verify #1349 VariableNamingConventions : underscore in final but at first position ?

This commit is contained in:
Andreas Dangel
2015-05-09 18:41:42 +02:00
parent 7d630f6cb3
commit b5e7cbbaf3

View File

@ -345,6 +345,16 @@ public class X {
public void setHorsTout(long hors_tout) {
this.horsTout = hors_tout;
}
}
]]></code>
</test-code>
<test-code>
<description>#1349 VariableNamingConventions : underscore in final but at first position ?</description>
<expected-problems>0</expected-problems>
<code><![CDATA[
public class X {
private final String _projection;
private final String _projectionID;
}
]]></code>
</test-code>