Skip to content

Commit 0b9e9a0

Browse files
committed
Postmerge cosmetics
1 parent 3534a63 commit 0b9e9a0

File tree

6 files changed

+16
-20
lines changed

6 files changed

+16
-20
lines changed

ByteBuffer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
* @license ByteBuffer.js (c) 2013 Daniel Wirtz <[email protected]>
1919
* Released under the Apache License, Version 2.0
2020
* see: https://github.com/dcodeIO/ByteBuffer.js for details
21-
*
22-
* Note that this library carefully avoids using the array access operator
23-
* (i.e. buffer[x]) on ArrayBufferView subclasses (e.g. Uint8Array), and
24-
* uses DataView instead. This is required for IE 8 compatibility.
2521
*/
2622
(function(global) {
2723
"use strict";
2824

25+
// Note that this library carefully avoids using the array access operator
26+
// (i.e. buffer[x]) on ArrayBufferView subclasses (e.g. Uint8Array), and
27+
// uses DataView instead. This is required for IE 8 compatibility.
28+
2929
function loadByteBuffer(Long) {
3030

3131
// Support node's Buffer if available, http://nodejs.org/api/buffer.html

ByteBuffer.min.js

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ByteBuffer.min.map

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

ByteBuffer.noexpose.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
* @license ByteBuffer.js (c) 2013 Daniel Wirtz <[email protected]>
1919
* Released under the Apache License, Version 2.0
2020
* see: https://github.com/dcodeIO/ByteBuffer.js for details
21-
*
22-
* Note that this library carefully avoids using the array access operator
23-
* (i.e. buffer[x]) on ArrayBufferView subclasses (e.g. Uint8Array), and
24-
* uses DataView instead. This is required for IE 8 compatibility.
2521
*/
2622
(function(global) {
2723
"use strict";
2824

25+
// Note that this library carefully avoids using the array access operator
26+
// (i.e. buffer[x]) on ArrayBufferView subclasses (e.g. Uint8Array), and
27+
// uses DataView instead. This is required for IE 8 compatibility.
28+
2929
function loadByteBuffer(Long) {
3030

3131
// Support node's Buffer if available, http://nodejs.org/api/buffer.html

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ Prerequisites to run it against IE<10, FF<15, Chrome<9 etc.
155155
-----------------------------------------------------------
156156
* Working ArrayBuffer & DataView implementations (i.e. use a [polyfill](https://github.com/inexorabletash/polyfill#typed-arrays-polyfill))
157157

158-
Usage with Closure Compiler set to `ADVANCED_OPTIMIZATIONS`
159-
-----------------------------------------------------------
158+
Usage with Closure Compiler's advanced optimizations
159+
----------------------------------------------------
160160
You basically have the following three options:
161161

162162
#### ByteBuffer.js as external dependency ####

src/ByteBuffer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
* @license ByteBuffer.js (c) 2013 Daniel Wirtz <[email protected]>
1919
* Released under the Apache License, Version 2.0
2020
* see: https://github.com/dcodeIO/ByteBuffer.js for details
21-
*
22-
* Note that this library carefully avoids using the array access operator
23-
* (i.e. buffer[x]) on ArrayBufferView subclasses (e.g. Uint8Array), and
24-
* uses DataView instead. This is required for IE 8 compatibility.
2521
*/
2622
(function(global) {
2723
"use strict";
2824

25+
// Note that this library carefully avoids using the array access operator
26+
// (i.e. buffer[x]) on ArrayBufferView subclasses (e.g. Uint8Array), and
27+
// uses DataView instead. This is required for IE 8 compatibility.
28+
2929
function loadByteBuffer(Long) {
3030

3131
// Support node's Buffer if available, http://nodejs.org/api/buffer.html

0 commit comments

Comments
 (0)