소스 검색

damnit... forgot static

git-svn-id: http://repo.nplusc.de/svn/iZink@216 8b19561d-0d00-6744-8ac1-9afc8f58a8aa
masterX244 11 년 전
부모
커밋
38c6c13348
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      ToolKit/src/de/nplusc/izc/tools/IOtools/FileTK.java

+ 2 - 2
ToolKit/src/de/nplusc/izc/tools/IOtools/FileTK.java

@@ -584,12 +584,12 @@ public class FileTK
     }
     
     
-    public String fileAsString(String path) throws FileNotFoundException, IOException
+    public static String fileAsString(String path) throws FileNotFoundException, IOException
     {
         return fileAsString(new File(path));
     }
     
-    public String fileAsString(File path) throws FileNotFoundException, IOException
+    public static String fileAsString(File path) throws FileNotFoundException, IOException
     {
         String out="";
             if(path.length()>Integer.MAX_VALUE)