We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f483731 commit 1c34606Copy full SHA for 1c34606
src/com/inet/lib/less/LessLookAheadReader.java
@@ -296,7 +296,7 @@ boolean nextIsMixinParam( boolean isBlock ) {
296
* @throws LessException
297
* If an I/O error occurs or EOF
298
*/
299
- char read() {
+ char read() throws LessException {
300
try {
301
if( cachePos < cache.length() ) {
302
return incLineColumn( cache.charAt( cachePos++ ) );
src/com/inet/lib/less/LessParser.java
@@ -1226,7 +1226,7 @@ private boolean comment( FormattableContainer container ) {
1226
1227
1228
1229
- private char read() {
+ private char read() throws LessException {
1230
return reader.read();
1231
}
1232
0 commit comments