forked from codehaus/javancss
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Some issues are encountered with tty with resources constructions:
1**) Semicolon**
try (
// Semi-colon at end of line causing parsing error
InputStream is = Test200.class.getResourceAsStream( "/toto.txt" );
) {
System.out.println( "is" );
}
2) Multiple try with resources
try (
// Several try with resources causes parsing issue
InputStream is1 = Test200.class.getResourceAsStream( "/toto.txt" );
InputStream is2 = Test200.class.getResourceAsStream( "/toto.txt" );
InputStream is3 = Test200.class.getResourceAsStream( "/toto.txt" );
) {
System.out.println( "is" );
}
- try nccs statements are not counted
Metadata
Metadata
Assignees
Labels
No labels