OSDN Git Service

modify javadoc.
authorOlyutorskii <olyutorskii@users.osdn.me>
Thu, 9 Jul 2020 18:45:11 +0000 (03:45 +0900)
committerOlyutorskii <olyutorskii@users.osdn.me>
Thu, 9 Jul 2020 18:45:11 +0000 (03:45 +0900)
src/main/java/jp/sfjp/jindolf/config/EnvInfo.java

index 1ce75a5..bfc2014 100644 (file)
@@ -140,7 +140,7 @@ public final class EnvInfo{
     /**
      * クラスパスリストを作成する。
      *
-     * @param 連結クラスパス値
+     * @param classpath 連結クラスパス値
      * @return クラスパスリスト
      */
     private static List<String> buildClassPathList(String classpath){
@@ -151,7 +151,7 @@ public final class EnvInfo{
             pathArray = new String[0];
         }
 
-        List result;
+        List<String> result;
         result = Arrays.asList(pathArray);
         result = Collections.unmodifiableList(result);