pmd-apex, pmd-javascript, pmd-plsql, pmd-vm: Checkstyle fixes

This commit is contained in:
Andreas Dangel
2016-12-16 16:10:04 +01:00
parent e280151987
commit 3cb9a423c9
16 changed files with 52 additions and 51 deletions

View File

@ -31,7 +31,7 @@ public class EcmascriptParserTest extends EcmascriptParserTestBase {
*/
@Test
public void testLineNumbers() {
String SOURCE_CODE = "function a() {" + PMD.EOL + " alert('hello');" + PMD.EOL + "}" + PMD.EOL;
final String SOURCE_CODE = "function a() {" + PMD.EOL + " alert('hello');" + PMD.EOL + "}" + PMD.EOL;
EcmascriptNode<AstRoot> node = parse(SOURCE_CODE);
assertEquals(1, node.getBeginLine());
assertEquals(1, node.getBeginColumn());