[java-decompiler] common file comparison method extracted; test data updated

This commit is contained in:
Roman Shevchenko
2015-09-07 19:23:12 +03:00
parent 9a06c52a8f
commit aab87019ef
6 changed files with 82 additions and 48 deletions

View File

@@ -0,0 +1,11 @@
package pkg;
import pkg.res.Loader;
public class Main {
public static void main(String[] args) {
Loader loader = new Loader();
String resource = loader.getResource();
System.out.println(resource);
}
}