Parcourir la source

damnit... forgot static

git-svn-id: http://repo.nplusc.de/svn/iZink@216 8b19561d-0d00-6744-8ac1-9afc8f58a8aa
masterX244 il y a 11 ans
Parent
commit
38c6c13348
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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)