mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
junit protocol consistency (IDEA-97858)
This commit is contained in:
@@ -62,6 +62,11 @@ public class SegmentReader {
|
||||
return Integer.parseInt(intString);
|
||||
}
|
||||
|
||||
public long readLong() {
|
||||
final String longString = upTo(PoolOfDelimiters.INTEGER_DELIMITER);
|
||||
return Long.parseLong(longString);
|
||||
}
|
||||
|
||||
public char readChar() {
|
||||
myPosition++;
|
||||
return myChars[myPosition - 1];
|
||||
|
||||
Reference in New Issue
Block a user