diff options
author | Sven Gothel <[email protected]> | 2011-11-29 04:50:16 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-11-29 04:50:16 +0100 |
commit | 60ea6727f1a089f6afd17fcea3bd7d29353af9b4 (patch) | |
tree | 17faa0b8d171f4790f33a1995e1ec1ca209aa216 /test/TestJarsInJar/ClassInJar2.java | |
parent | b3d5e20c04af353b246c9b2607c145f7dbd508dd (diff) |
Add 'TestJarsInJar.jar' test JAR file for upcoming JarUtil tests (Jar in Jar).
Diffstat (limited to 'test/TestJarsInJar/ClassInJar2.java')
-rw-r--r-- | test/TestJarsInJar/ClassInJar2.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/TestJarsInJar/ClassInJar2.java b/test/TestJarsInJar/ClassInJar2.java new file mode 100644 index 0000000..2205533 --- /dev/null +++ b/test/TestJarsInJar/ClassInJar2.java @@ -0,0 +1,10 @@ + +public class ClassInJar2 { + static { + System.err.println("ClassInJar2.init<>"); + } + + public static void ping() { + System.err.println("ClassInJar2.ping()"); + } +} |