File tree 3 files changed +4
-6
lines changed
src/main/resources/javascript
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 81
81
82
82
<jsr305 .version>3.0.2</jsr305 .version>
83
83
84
- <rhino .version>1.7.15 </rhino .version>
84
+ <rhino .version>1.8.0 </rhino .version>
85
85
<!--
86
86
be aware that connectivity mapping has a direct dependency on files inside this library.
87
87
when updating this version, you should also check if the used paths and files still exist
804
804
805
805
<dependency >
806
806
<groupId >org.mozilla</groupId >
807
- <artifactId >rhino-runtime </artifactId >
807
+ <artifactId >rhino</artifactId >
808
808
<version >${rhino.version} </version >
809
809
</dependency >
810
810
<dependency >
Original file line number Diff line number Diff line change 138
138
</dependency >
139
139
<dependency >
140
140
<groupId >org.mozilla</groupId >
141
- <artifactId >rhino-runtime </artifactId >
141
+ <artifactId >rhino</artifactId >
142
142
</dependency >
143
143
144
144
<!-- note: the order of classindex and jmh-generator-annprocess is important (classindex before
Original file line number Diff line number Diff line change @@ -130,9 +130,7 @@ let Ditto = (function () {
130
130
*/
131
131
function asByteBuffer ( arrayBuffer ) {
132
132
133
- let byteBuffer = new ArrayBuffer ( arrayBuffer . byteLength ) ;
134
- new Uint8Array ( byteBuffer ) . set ( new Uint8Array ( arrayBuffer ) ) ;
135
- return dcodeIO . ByteBuffer . wrap ( byteBuffer ) ;
133
+ return dcodeIO . ByteBuffer . wrap ( new Uint8Array ( arrayBuffer ) ) ;
136
134
}
137
135
138
136
return {
You can’t perform that action at this time.
0 commit comments