1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 01:06:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-02-16 02:06:59 +00:00
parent 97e5359102
commit 003e75e1bb

View file

@ -23,11 +23,13 @@ public class ScannerContext {
public ScannerContext() {
}
public ScannerContext initialize(Reader r) {
fReader = r;
fOffset = 0;
return this;
}
public ScannerContext initialize(Reader r, int offset) {
try {
r.skip(offset);
@ -79,5 +81,4 @@ public class ScannerContext {
public void pushUndo(int undo) {
this.fUndo.push(new Integer(undo));
}
}