public class BadCodeGreen {
@SuppressWarnings({"SuspiciousToArrayCall"})
static { // happens on instance initializer i.e. without "static" as well
System.setProperty("...", "...");
}
}
Information:Compilation completed with 2 errors and 0 warnings
Information:2 errors
Information:0 warnings
C:\work\BadCodeGreen.java
Error:Error:line (8)illegal start of type
Error:Error:line (11)<identifier> expected
Description
public class BadCodeGreen {
@SuppressWarnings({"SuspiciousToArrayCall"})
static { // happens on instance initializer i.e. without "static" as well
System.setProperty("...", "...");
}
}
Information:Compilation completed with 2 errors and 0 warnings
Information:2 errors
Information:0 warnings
C:\work\BadCodeGreen.java
Error:Error:line (8)illegal start of type
Error:Error:line (11)<identifier> expected