refacto + recovery code from uncommited on my old pc

This commit is contained in:
marc barbier
2021-07-07 21:45:33 +02:00
parent 2a6b802bb0
commit 7c88e6cf2f
12 changed files with 496 additions and 410 deletions
+5 -6
View File
@@ -1,12 +1,11 @@
package downloader;
public class Log {
public static void e(String who,String msg)
{
System.err.println(who + " : "+msg);
public static void e(String who, String msg) {
System.err.println(String.valueOf(who) + " : " + msg);
}
public static void i(String who,String msg)
{
System.out.println(who +" : "+msg);
public static void i(String who, String msg) {
System.out.println(String.valueOf(who) + " : " + msg);
}
}