Skip to content

Commit 192a0f7

Browse files
committed
make range begin and end public
1 parent 845a09f commit 192a0f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datalog/src/main/java/org/wpilib/datalog/DataLogReaderThread.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ public DataLogReaderEntry(StartRecordData startData) {
223223

224224
/** Range of records during which an entry is valid. */
225225
public static class DataLogReaderRange {
226-
DataLogIterator m_begin;
227-
DataLogIterator m_end;
226+
public DataLogIterator m_begin;
227+
public DataLogIterator m_end;
228228

229229
public DataLogReaderRange(DataLogIterator begin, DataLogIterator end) {
230230
m_begin = begin;

0 commit comments

Comments
 (0)