CLI: change argument naming convention

As in all other Unix/POSIX tools and JVM language compilers, multiple words
comprising the argument name should be lowercase, separated by dashes
This commit is contained in:
Alexander Udalov
2014-08-01 21:19:41 -05:00
parent 6da95e2cea
commit cf431ffab0
18 changed files with 52 additions and 60 deletions
@@ -32,13 +32,12 @@ import static org.jetbrains.k2js.test.utils.TranslationUtils.createJetFileList;
import static org.jetbrains.k2js.test.utils.TranslationUtils.getConfig;
@SuppressWarnings("JUnitTestCaseWithNoTests")
public final class SourcemapTest extends SingleFileTranslationTest {
public final class SourceMapTest extends SingleFileTranslationTest {
@NotNull
private final String filename;
@SuppressWarnings("JUnitTestCaseWithNonTrivialConstructors")
public SourcemapTest(@NotNull String filename) {
public SourceMapTest(@NotNull String filename) {
super("sourcemap/");
this.filename = filename;
}
@@ -74,7 +73,7 @@ public final class SourcemapTest extends SingleFileTranslationTest {
@NotNull
@Override
public Test createTest(@NotNull String filename) {
SourcemapTest examplesTest = new SourcemapTest(filename);
SourceMapTest examplesTest = new SourceMapTest(filename);
examplesTest.setName(filename);
return examplesTest;
}