]> source.dussan.org Git - sonarqube.git/commitdiff
Fix some quality flaws
authorJulien HENRY <julien.henry@sonarsource.com>
Thu, 13 Feb 2014 14:25:51 +0000 (15:25 +0100)
committerJulien HENRY <julien.henry@sonarsource.com>
Thu, 13 Feb 2014 14:29:14 +0000 (15:29 +0100)
sonar-batch/src/main/java/org/sonar/batch/scan/filesystem/FileIndex.java
sonar-batch/src/test/java/org/sonar/batch/index/ResourceKeyMigrationTest.java

index 080b3a4e2e93d47247ad8bc8795163e3a89e146e..31adc80346ecf3b2ea3f4ccfcc848d898e09ac4c 100644 (file)
@@ -43,7 +43,7 @@ import java.util.Set;
  */
 public class FileIndex implements BatchComponent {
 
-  private static final String FILE_S_IS_NOT_DECLARED_IN_MODULE_BASEDIR_S = "File '%s' is not declared in module basedir %s";
+  private static final String FILE_IS_NOT_DECLARED_IN_MODULE_BASEDIR = "File '%s' is not declared in module basedir %s";
 
   private static class Progress {
     private final Set<String> removedPaths;
@@ -124,7 +124,7 @@ public class FileIndex implements BatchComponent {
       String path = pathResolver.relativePath(fileSystem.baseDir(), sourceFile);
       if (path == null) {
         LoggerFactory.getLogger(getClass()).warn(String.format(
-          FILE_S_IS_NOT_DECLARED_IN_MODULE_BASEDIR_S, sourceFile.getAbsoluteFile(), fileSystem.baseDir()
+          FILE_IS_NOT_DECLARED_IN_MODULE_BASEDIR, sourceFile.getAbsoluteFile(), fileSystem.baseDir()
           ));
       } else {
         if (exclusionFilters.accept(sourceFile, path, type)) {
@@ -149,7 +149,7 @@ public class FileIndex implements BatchComponent {
       String path = pathResolver.relativePath(fileSystem.baseDir(), sourceFile);
       if (path == null) {
         LoggerFactory.getLogger(getClass()).warn(String.format(
-          FILE_S_IS_NOT_DECLARED_IN_MODULE_BASEDIR_S, sourceFile.getAbsoluteFile(), fileSystem.baseDir()
+          FILE_IS_NOT_DECLARED_IN_MODULE_BASEDIR, sourceFile.getAbsoluteFile(), fileSystem.baseDir()
           ));
       } else {
         if (exclusionFilters.accept(sourceFile, path, InputFile.TYPE_MAIN)) {
index 8abbe8d55d246a6a7bf2407b42a344d5e922c873..f669da66c7e9a1fe4d5df4190b50b0325e907241 100644 (file)
@@ -107,12 +107,12 @@ public class ResourceKeyMigrationTest extends AbstractDbUnitTestCase {
     migration.migrateIfNeeded(javaModule, javaInputFiles);
     migration.migrateIfNeeded(phpModule, phpInputFiles);
 
-    verify(logger).info("Migrated resource b:org.foo.Bar to b:src/main/java/org/foo/Bar.java");
+    verify(logger).info("Migrated resource {} to {}", "b:org.foo.Bar", "b:src/main/java/org/foo/Bar.java");
     verify(logger).warn("Directory with key b:org/foo matches both b:src/main/java/org/foo and b:src/test/java/org/foo. First match is arbitrary chosen.");
-    verify(logger).info("Migrated resource b:org.foo.BarTest to b:src/test/java/org/foo/BarTest.java");
-    verify(logger).info("Migrated resource b:[default].RootBar to b:src/main/java/RootBar.java");
-    verify(logger).info("Migrated resource b:org/foo to b:src/main/java/org/foo");
-    verify(logger).info("Migrated resource b:[root] to b:src/main/java");
+    verify(logger).info("Migrated resource {} to {}", "b:org.foo.BarTest", "b:src/test/java/org/foo/BarTest.java");
+    verify(logger).info("Migrated resource {} to {}", "b:[default].RootBar", "b:src/main/java/RootBar.java");
+    verify(logger).info("Migrated resource {} to {}", "b:org/foo", "b:src/main/java/org/foo");
+    verify(logger).info("Migrated resource {} to {}", "b:[root]", "b:src/main/java");
 
     checkTables("shouldMigrateResourceKeys", new String[] {"build_date", "created_at"}, "projects");
   }