]> source.dussan.org Git - sonarqube.git/commitdiff
Minor changes (log + remove usage of plexus StringUtils)
authorSimon Brandhof <simon.brandhof@gmail.com>
Thu, 31 Jan 2013 15:11:48 +0000 (16:11 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Fri, 1 Feb 2013 13:28:37 +0000 (14:28 +0100)
sonar-core/src/main/java/org/sonar/core/component/ScanGraphStore.java
sonar-server/src/main/java/org/sonar/server/configuration/ProfilesBackup.java

index 3d88849a6bdcddd0065f03d88d2887993a04c3b1..44590d76ef6df119c914dce68aa60d3bca6fdb84 100644 (file)
@@ -45,7 +45,7 @@ public class ScanGraphStore {
   }
 
   public void save() {
-    LoggerFactory.getLogger(ScanGraphStore.class).info("Persisting graphs of components");
+    LoggerFactory.getLogger(ScanGraphStore.class).info("Persist graphs of components");
     BatchSession session = myBatis.openBatchSession();
     GraphDtoMapper mapper = session.getMapper(GraphDtoMapper.class);
     try {
index fbfac833dec0e5d51450f526f44ffcd05d92d31d..42a3322d150b4a315c368812890f7a20d8ef89f1 100644 (file)
@@ -26,7 +26,7 @@ import com.thoughtworks.xstream.converters.UnmarshallingContext;
 import com.thoughtworks.xstream.io.HierarchicalStreamReader;
 import com.thoughtworks.xstream.io.HierarchicalStreamWriter;
 import org.apache.commons.collections.CollectionUtils;
-import org.codehaus.plexus.util.StringUtils;
+import org.apache.commons.lang.StringUtils;
 import org.slf4j.LoggerFactory;
 import org.sonar.api.database.DatabaseSession;
 import org.sonar.api.measures.Metric;