indentation fix

This commit is contained in:
Petr Bělohlávek 2014-09-27 11:47:13 +02:00
parent f143495ab2
commit 78c24f0588
1 changed files with 47 additions and 50 deletions

View File

@ -526,8 +526,7 @@ public class TokenStreamRewriter {
System.out.println("new rop "+rop);
}
else if ( !disjoint && !same ) {
throw new IllegalArgumentException("replace op boundaries of "+rop+
" overlap with previous "+prevRop);
throw new IllegalArgumentException("replace op boundaries of "+rop+" overlap with previous "+prevRop);
}
}
}
@ -558,8 +557,7 @@ public class TokenStreamRewriter {
continue;
}
if ( iop.index >= rop.index && iop.index <= rop.lastIndex ) {
throw new IllegalArgumentException("insert op "+iop+
" within boundaries of previous "+rop);
throw new IllegalArgumentException("insert op "+iop+" within boundaries of previous "+rop);
}
}
}
@ -597,5 +595,4 @@ public class TokenStreamRewriter {
}
return ops;
}
}