Quellcode durchsuchen

damnit... forgot static

git-svn-id: http://repo.nplusc.de/svn/iZink@216 8b19561d-0d00-6744-8ac1-9afc8f58a8aa
masterX244 vor 11 Jahren
Ursprung
Commit
38c6c13348
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  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)