Skip to content

Commit 1c34606

Browse files
committed
Fix method signatures
1 parent f483731 commit 1c34606

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/com/inet/lib/less/LessLookAheadReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ boolean nextIsMixinParam( boolean isBlock ) {
296296
* @throws LessException
297297
* If an I/O error occurs or EOF
298298
*/
299-
char read() {
299+
char read() throws LessException {
300300
try {
301301
if( cachePos < cache.length() ) {
302302
return incLineColumn( cache.charAt( cachePos++ ) );

src/com/inet/lib/less/LessParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ private boolean comment( FormattableContainer container ) {
12261226
* @throws LessException
12271227
* If an I/O error occurs or EOF
12281228
*/
1229-
private char read() {
1229+
private char read() throws LessException {
12301230
return reader.read();
12311231
}
12321232

0 commit comments

Comments
 (0)