Changeset 8243 in josm for trunk/src/com/drew/lang/SequentialByteArrayReader.java
- Timestamp:
- 2015-04-21T00:42:50+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/com/drew/lang/SequentialByteArrayReader.java ¶
r8132 r8243 37 37 private int _index; 38 38 39 public SequentialByteArrayReader(@NotNull byte[] bytes) 40 { 41 this(bytes, 0); 42 } 43 39 44 @SuppressWarnings("ConstantConditions") 40 public SequentialByteArrayReader(@NotNull byte[] bytes) 45 public SequentialByteArrayReader(@NotNull byte[] bytes, int baseIndex) 41 46 { 42 47 if (bytes == null) … … 44 49 45 50 _bytes = bytes; 46 _index = 0;51 _index = baseIndex; 47 52 } 48 53
Note:
See TracChangeset
for help on using the changeset viewer.