blob: 1d84182b2b6e216e78c8eb5140b608bd834ebda3 [file] [log] [blame]
package test;
/**
* Class that does not respect Sun conventions.
*/
public class NonSunClass {
/**
* Does not match the Sun convention.
*/
private boolean S1 = true;
public boolean getS1() {
return S1;
}
}