Update java middleware to not use apache commons

This commit is contained in:
Leonid Bugaev
2016-05-02 16:31:38 +05:00
parent bb0fab4d35
commit 5779ea1b45
2 changed files with 0 additions and 6 deletions
-3
View File
@@ -2,8 +2,6 @@ import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import org.apache.commons.io.IOUtils;
public class echo {
public static void main(String[] args) {
if(args != null){
@@ -24,7 +22,6 @@ public class echo {
}
} catch (IOException e) {
IOUtils.closeQuietly(stdin);
}
}
}