diff --git a/hello/Hello.java b/hello/Hello.java deleted file mode 100644 index d7d4f91935..0000000000 --- a/hello/Hello.java +++ /dev/null @@ -1,5 +0,0 @@ -public class Hello { - public static void main(String[] args) { - System.out.println("hello, world!"); - } -} diff --git a/hello/LzmaDec.o b/hello/LzmaDec.o deleted file mode 100644 index 6e0f19285b..0000000000 Binary files a/hello/LzmaDec.o and /dev/null differ diff --git a/hello/bootimage-bin.o b/hello/bootimage-bin.o deleted file mode 100644 index 8ce8e42e8e..0000000000 Binary files a/hello/bootimage-bin.o and /dev/null differ diff --git a/hello/bootimage-main.cpp b/hello/bootimage-main.cpp deleted file mode 100644 index 9b1b541a7c..0000000000 --- a/hello/bootimage-main.cpp +++ /dev/null @@ -1,91 +0,0 @@ -#include "stdint.h" -#include "jni.h" - -#if (defined __MINGW32__) || (defined _MSC_VER) -# define EXPORT __declspec(dllexport) -#else -# define EXPORT __attribute__ ((visibility("default"))) -#endif - -#if (! defined __x86_64__) && ((defined __MINGW32__) || (defined _MSC_VER)) -# define BOOTIMAGE_BIN(x) binary_bootimage_bin_##x -# define CODEIMAGE_BIN(x) binary_codeimage_bin_##x -#else -# define BOOTIMAGE_BIN(x) _binary_bootimage_bin_##x -# define CODEIMAGE_BIN(x) _binary_codeimage_bin_##x -#endif - -extern "C" { - - extern const uint8_t BOOTIMAGE_BIN(start)[]; - extern const uint8_t BOOTIMAGE_BIN(end)[]; - - EXPORT const uint8_t* - bootimageBin(unsigned* size) - { - *size = BOOTIMAGE_BIN(end) - BOOTIMAGE_BIN(start); - return BOOTIMAGE_BIN(start); - } - - extern const uint8_t CODEIMAGE_BIN(start)[]; - extern const uint8_t CODEIMAGE_BIN(end)[]; - - EXPORT const uint8_t* - codeimageBin(unsigned* size) - { - *size = CODEIMAGE_BIN(end) - CODEIMAGE_BIN(start); - return CODEIMAGE_BIN(start); - } - -} // extern "C" - -int -main(int ac, const char** av) -{ - JavaVMInitArgs vmArgs; - vmArgs.version = JNI_VERSION_1_2; - vmArgs.nOptions = 2; - vmArgs.ignoreUnrecognized = JNI_TRUE; - - JavaVMOption options[vmArgs.nOptions]; - vmArgs.options = options; - - options[0].optionString - = const_cast("-Davian.bootimage=lzma:bootimageBin"); - - options[1].optionString - = const_cast("-Davian.codeimage=codeimageBin"); - - JavaVM* vm; - void* env; - JNI_CreateJavaVM(&vm, &env, &vmArgs); - JNIEnv* e = static_cast(env); - - jclass c = e->FindClass("Hello"); - if (not e->ExceptionCheck()) { - jmethodID m = e->GetStaticMethodID(c, "main", "([Ljava/lang/String;)V"); - if (not e->ExceptionCheck()) { - jclass stringClass = e->FindClass("java/lang/String"); - if (not e->ExceptionCheck()) { - jobjectArray a = e->NewObjectArray(ac-1, stringClass, 0); - if (not e->ExceptionCheck()) { - for (int i = 1; i < ac; ++i) { - e->SetObjectArrayElement(a, i-1, e->NewStringUTF(av[i])); - } - - e->CallStaticVoidMethod(c, m, a); - } - } - } - } - - int exitCode = 0; - if (e->ExceptionCheck()) { - exitCode = -1; - e->ExceptionDescribe(); - } - - vm->DestroyJavaVM(); - - return exitCode; -} diff --git a/hello/builtin.o b/hello/builtin.o deleted file mode 100644 index a44420ae4f..0000000000 Binary files a/hello/builtin.o and /dev/null differ diff --git a/hello/classpath-avian.o b/hello/classpath-avian.o deleted file mode 100644 index e89fa15edf..0000000000 Binary files a/hello/classpath-avian.o and /dev/null differ diff --git a/hello/codeimage-bin.o b/hello/codeimage-bin.o deleted file mode 100644 index 67df9d99a3..0000000000 Binary files a/hello/codeimage-bin.o and /dev/null differ diff --git a/hello/compile-x86-asm.o b/hello/compile-x86-asm.o deleted file mode 100644 index 2c52c1e7d7..0000000000 Binary files a/hello/compile-x86-asm.o and /dev/null differ diff --git a/hello/compile.o b/hello/compile.o deleted file mode 100644 index d189981a42..0000000000 Binary files a/hello/compile.o and /dev/null differ diff --git a/hello/compiler.o b/hello/compiler.o deleted file mode 100644 index 74bb19ae36..0000000000 Binary files a/hello/compiler.o and /dev/null differ diff --git a/hello/finder.o b/hello/finder.o deleted file mode 100644 index 864c058a04..0000000000 Binary files a/hello/finder.o and /dev/null differ diff --git a/hello/heap.o b/hello/heap.o deleted file mode 100644 index e6b9f1d037..0000000000 Binary files a/hello/heap.o and /dev/null differ diff --git a/hello/hello b/hello/hello deleted file mode 100755 index 061a8ad780..0000000000 Binary files a/hello/hello and /dev/null differ diff --git a/hello/java-io.o b/hello/java-io.o deleted file mode 100644 index a22b011d4c..0000000000 Binary files a/hello/java-io.o and /dev/null differ diff --git a/hello/java-lang.o b/hello/java-lang.o deleted file mode 100644 index 2d832276f4..0000000000 Binary files a/hello/java-lang.o and /dev/null differ diff --git a/hello/java-net.o b/hello/java-net.o deleted file mode 100644 index 93c00c7c9d..0000000000 Binary files a/hello/java-net.o and /dev/null differ diff --git a/hello/java-nio.o b/hello/java-nio.o deleted file mode 100644 index 8b5c345ec0..0000000000 Binary files a/hello/java-nio.o and /dev/null differ diff --git a/hello/java-util-zip.o b/hello/java-util-zip.o deleted file mode 100644 index 45562eec79..0000000000 Binary files a/hello/java-util-zip.o and /dev/null differ diff --git a/hello/java-util.o b/hello/java-util.o deleted file mode 100644 index b2dd202121..0000000000 Binary files a/hello/java-util.o and /dev/null differ diff --git a/hello/jnienv.o b/hello/jnienv.o deleted file mode 100644 index 80c7d69c15..0000000000 Binary files a/hello/jnienv.o and /dev/null differ diff --git a/hello/lzma-decode.o b/hello/lzma-decode.o deleted file mode 100644 index cbf93f38cc..0000000000 Binary files a/hello/lzma-decode.o and /dev/null differ diff --git a/hello/machine.o b/hello/machine.o deleted file mode 100644 index eb5e8a6626..0000000000 Binary files a/hello/machine.o and /dev/null differ diff --git a/hello/main.o b/hello/main.o deleted file mode 100644 index fe571f20ce..0000000000 Binary files a/hello/main.o and /dev/null differ diff --git a/hello/posix.o b/hello/posix.o deleted file mode 100644 index 1c17cfa8d9..0000000000 Binary files a/hello/posix.o and /dev/null differ diff --git a/hello/process.o b/hello/process.o deleted file mode 100644 index cd73fef85e..0000000000 Binary files a/hello/process.o and /dev/null differ diff --git a/hello/stage1/Hello.class b/hello/stage1/Hello.class deleted file mode 100644 index c0dcb729f1..0000000000 Binary files a/hello/stage1/Hello.class and /dev/null differ diff --git a/hello/stage1/META-INF/MANIFEST.MF b/hello/stage1/META-INF/MANIFEST.MF deleted file mode 100644 index 9ca4badc23..0000000000 --- a/hello/stage1/META-INF/MANIFEST.MF +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -Created-By: 1.6.0-18 (Sun Microsystems Inc.) - diff --git a/hello/stage1/avian/Addendum.class b/hello/stage1/avian/Addendum.class deleted file mode 100644 index 168be4e7b9..0000000000 Binary files a/hello/stage1/avian/Addendum.class and /dev/null differ diff --git a/hello/stage1/avian/AnnotationInvocationHandler.class b/hello/stage1/avian/AnnotationInvocationHandler.class deleted file mode 100644 index d6208ba6f7..0000000000 Binary files a/hello/stage1/avian/AnnotationInvocationHandler.class and /dev/null differ diff --git a/hello/stage1/avian/Assembler$MethodData.class b/hello/stage1/avian/Assembler$MethodData.class deleted file mode 100644 index 60981875c2..0000000000 Binary files a/hello/stage1/avian/Assembler$MethodData.class and /dev/null differ diff --git a/hello/stage1/avian/Assembler.class b/hello/stage1/avian/Assembler.class deleted file mode 100644 index 9d2f9e2247..0000000000 Binary files a/hello/stage1/avian/Assembler.class and /dev/null differ diff --git a/hello/stage1/avian/Atomic.class b/hello/stage1/avian/Atomic.class deleted file mode 100644 index 0d841cc64c..0000000000 Binary files a/hello/stage1/avian/Atomic.class and /dev/null differ diff --git a/hello/stage1/avian/Callback.class b/hello/stage1/avian/Callback.class deleted file mode 100644 index 6e746a6259..0000000000 Binary files a/hello/stage1/avian/Callback.class and /dev/null differ diff --git a/hello/stage1/avian/CallbackReceiver.class b/hello/stage1/avian/CallbackReceiver.class deleted file mode 100644 index 830731ad7b..0000000000 Binary files a/hello/stage1/avian/CallbackReceiver.class and /dev/null differ diff --git a/hello/stage1/avian/Cell.class b/hello/stage1/avian/Cell.class deleted file mode 100644 index 4eac9e7405..0000000000 Binary files a/hello/stage1/avian/Cell.class and /dev/null differ diff --git a/hello/stage1/avian/ClassAddendum.class b/hello/stage1/avian/ClassAddendum.class deleted file mode 100644 index 8fa105fbc1..0000000000 Binary files a/hello/stage1/avian/ClassAddendum.class and /dev/null differ diff --git a/hello/stage1/avian/Classes.class b/hello/stage1/avian/Classes.class deleted file mode 100644 index 59d18190f5..0000000000 Binary files a/hello/stage1/avian/Classes.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool$ClassPoolEntry.class b/hello/stage1/avian/ConstantPool$ClassPoolEntry.class deleted file mode 100644 index 489432a84d..0000000000 Binary files a/hello/stage1/avian/ConstantPool$ClassPoolEntry.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool$FieldRefPoolEntry.class b/hello/stage1/avian/ConstantPool$FieldRefPoolEntry.class deleted file mode 100644 index df2bd1456b..0000000000 Binary files a/hello/stage1/avian/ConstantPool$FieldRefPoolEntry.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool$IntegerPoolEntry.class b/hello/stage1/avian/ConstantPool$IntegerPoolEntry.class deleted file mode 100644 index a8ca4ec112..0000000000 Binary files a/hello/stage1/avian/ConstantPool$IntegerPoolEntry.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool$MethodRefPoolEntry.class b/hello/stage1/avian/ConstantPool$MethodRefPoolEntry.class deleted file mode 100644 index ddfb2548ba..0000000000 Binary files a/hello/stage1/avian/ConstantPool$MethodRefPoolEntry.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool$NameAndTypePoolEntry.class b/hello/stage1/avian/ConstantPool$NameAndTypePoolEntry.class deleted file mode 100644 index f6a3bd166e..0000000000 Binary files a/hello/stage1/avian/ConstantPool$NameAndTypePoolEntry.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool$PoolEntry.class b/hello/stage1/avian/ConstantPool$PoolEntry.class deleted file mode 100644 index ce96b8836c..0000000000 Binary files a/hello/stage1/avian/ConstantPool$PoolEntry.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool$StringPoolEntry.class b/hello/stage1/avian/ConstantPool$StringPoolEntry.class deleted file mode 100644 index 17b438e4fd..0000000000 Binary files a/hello/stage1/avian/ConstantPool$StringPoolEntry.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool$Utf8PoolEntry.class b/hello/stage1/avian/ConstantPool$Utf8PoolEntry.class deleted file mode 100644 index 1817d8de49..0000000000 Binary files a/hello/stage1/avian/ConstantPool$Utf8PoolEntry.class and /dev/null differ diff --git a/hello/stage1/avian/ConstantPool.class b/hello/stage1/avian/ConstantPool.class deleted file mode 100644 index c56eadd24b..0000000000 Binary files a/hello/stage1/avian/ConstantPool.class and /dev/null differ diff --git a/hello/stage1/avian/Continuations$Continuation.class b/hello/stage1/avian/Continuations$Continuation.class deleted file mode 100644 index 82493d7a9c..0000000000 Binary files a/hello/stage1/avian/Continuations$Continuation.class and /dev/null differ diff --git a/hello/stage1/avian/Continuations$UnwindResult.class b/hello/stage1/avian/Continuations$UnwindResult.class deleted file mode 100644 index c32084fad8..0000000000 Binary files a/hello/stage1/avian/Continuations$UnwindResult.class and /dev/null differ diff --git a/hello/stage1/avian/Continuations.class b/hello/stage1/avian/Continuations.class deleted file mode 100644 index 65ed444d01..0000000000 Binary files a/hello/stage1/avian/Continuations.class and /dev/null differ diff --git a/hello/stage1/avian/FieldAddendum.class b/hello/stage1/avian/FieldAddendum.class deleted file mode 100644 index 7b0e151c33..0000000000 Binary files a/hello/stage1/avian/FieldAddendum.class and /dev/null differ diff --git a/hello/stage1/avian/IncompatibleContinuationException.class b/hello/stage1/avian/IncompatibleContinuationException.class deleted file mode 100644 index 7164d997bc..0000000000 Binary files a/hello/stage1/avian/IncompatibleContinuationException.class and /dev/null differ diff --git a/hello/stage1/avian/Iso88591.class b/hello/stage1/avian/Iso88591.class deleted file mode 100644 index 53fa13ec08..0000000000 Binary files a/hello/stage1/avian/Iso88591.class and /dev/null differ diff --git a/hello/stage1/avian/Machine.class b/hello/stage1/avian/Machine.class deleted file mode 100644 index 55158c4fb5..0000000000 Binary files a/hello/stage1/avian/Machine.class and /dev/null differ diff --git a/hello/stage1/avian/MethodAddendum.class b/hello/stage1/avian/MethodAddendum.class deleted file mode 100644 index ccd77a23fb..0000000000 Binary files a/hello/stage1/avian/MethodAddendum.class and /dev/null differ diff --git a/hello/stage1/avian/OpenJDK.class b/hello/stage1/avian/OpenJDK.class deleted file mode 100644 index 4269366c3b..0000000000 Binary files a/hello/stage1/avian/OpenJDK.class and /dev/null differ diff --git a/hello/stage1/avian/PersistentSet$1.class b/hello/stage1/avian/PersistentSet$1.class deleted file mode 100644 index fecf643ea6..0000000000 Binary files a/hello/stage1/avian/PersistentSet$1.class and /dev/null differ diff --git a/hello/stage1/avian/PersistentSet$Iterator.class b/hello/stage1/avian/PersistentSet$Iterator.class deleted file mode 100644 index 8234a92feb..0000000000 Binary files a/hello/stage1/avian/PersistentSet$Iterator.class and /dev/null differ diff --git a/hello/stage1/avian/PersistentSet$Node.class b/hello/stage1/avian/PersistentSet$Node.class deleted file mode 100644 index 4e0374e039..0000000000 Binary files a/hello/stage1/avian/PersistentSet$Node.class and /dev/null differ diff --git a/hello/stage1/avian/PersistentSet$Path.class b/hello/stage1/avian/PersistentSet$Path.class deleted file mode 100644 index 15795a435a..0000000000 Binary files a/hello/stage1/avian/PersistentSet$Path.class and /dev/null differ diff --git a/hello/stage1/avian/PersistentSet.class b/hello/stage1/avian/PersistentSet.class deleted file mode 100644 index 2e9e7942cf..0000000000 Binary files a/hello/stage1/avian/PersistentSet.class and /dev/null differ diff --git a/hello/stage1/avian/Singleton.class b/hello/stage1/avian/Singleton.class deleted file mode 100644 index 86328e2f33..0000000000 Binary files a/hello/stage1/avian/Singleton.class and /dev/null differ diff --git a/hello/stage1/avian/Stream.class b/hello/stage1/avian/Stream.class deleted file mode 100644 index d961626ee9..0000000000 Binary files a/hello/stage1/avian/Stream.class and /dev/null differ diff --git a/hello/stage1/avian/SystemClassLoader.class b/hello/stage1/avian/SystemClassLoader.class deleted file mode 100644 index 84856d2c37..0000000000 Binary files a/hello/stage1/avian/SystemClassLoader.class and /dev/null differ diff --git a/hello/stage1/avian/Utf8.class b/hello/stage1/avian/Utf8.class deleted file mode 100644 index c38c370539..0000000000 Binary files a/hello/stage1/avian/Utf8.class and /dev/null differ diff --git a/hello/stage1/avian/VMClass.class b/hello/stage1/avian/VMClass.class deleted file mode 100644 index 7624289793..0000000000 Binary files a/hello/stage1/avian/VMClass.class and /dev/null differ diff --git a/hello/stage1/avian/VMField.class b/hello/stage1/avian/VMField.class deleted file mode 100644 index 01239c0773..0000000000 Binary files a/hello/stage1/avian/VMField.class and /dev/null differ diff --git a/hello/stage1/avian/VMMethod.class b/hello/stage1/avian/VMMethod.class deleted file mode 100644 index 0f26be9e98..0000000000 Binary files a/hello/stage1/avian/VMMethod.class and /dev/null differ diff --git a/hello/stage1/avian/file/Handler$FileURLConnection.class b/hello/stage1/avian/file/Handler$FileURLConnection.class deleted file mode 100644 index f9aa8f0f86..0000000000 Binary files a/hello/stage1/avian/file/Handler$FileURLConnection.class and /dev/null differ diff --git a/hello/stage1/avian/file/Handler.class b/hello/stage1/avian/file/Handler.class deleted file mode 100644 index 1ee350aa15..0000000000 Binary files a/hello/stage1/avian/file/Handler.class and /dev/null differ diff --git a/hello/stage1/avian/http/Handler.class b/hello/stage1/avian/http/Handler.class deleted file mode 100644 index 473835185e..0000000000 Binary files a/hello/stage1/avian/http/Handler.class and /dev/null differ diff --git a/hello/stage1/avian/jar/Handler$MyJarURLConnection.class b/hello/stage1/avian/jar/Handler$MyJarURLConnection.class deleted file mode 100644 index 4fd170e4c4..0000000000 Binary files a/hello/stage1/avian/jar/Handler$MyJarURLConnection.class and /dev/null differ diff --git a/hello/stage1/avian/jar/Handler.class b/hello/stage1/avian/jar/Handler.class deleted file mode 100644 index da120910b7..0000000000 Binary files a/hello/stage1/avian/jar/Handler.class and /dev/null differ diff --git a/hello/stage1/avian/resource/Handler$ResourceConnection.class b/hello/stage1/avian/resource/Handler$ResourceConnection.class deleted file mode 100644 index aac416da40..0000000000 Binary files a/hello/stage1/avian/resource/Handler$ResourceConnection.class and /dev/null differ diff --git a/hello/stage1/avian/resource/Handler$ResourceInputStream.class b/hello/stage1/avian/resource/Handler$ResourceInputStream.class deleted file mode 100644 index 53dc0a2f44..0000000000 Binary files a/hello/stage1/avian/resource/Handler$ResourceInputStream.class and /dev/null differ diff --git a/hello/stage1/avian/resource/Handler.class b/hello/stage1/avian/resource/Handler.class deleted file mode 100644 index 9b1460d3be..0000000000 Binary files a/hello/stage1/avian/resource/Handler.class and /dev/null differ diff --git a/hello/stage1/java/io/BufferedInputStream.class b/hello/stage1/java/io/BufferedInputStream.class deleted file mode 100644 index 1a230db16a..0000000000 Binary files a/hello/stage1/java/io/BufferedInputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/BufferedOutputStream.class b/hello/stage1/java/io/BufferedOutputStream.class deleted file mode 100644 index 3d363cb6fc..0000000000 Binary files a/hello/stage1/java/io/BufferedOutputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/BufferedReader.class b/hello/stage1/java/io/BufferedReader.class deleted file mode 100644 index 3c43f9e2b8..0000000000 Binary files a/hello/stage1/java/io/BufferedReader.class and /dev/null differ diff --git a/hello/stage1/java/io/BufferedWriter.class b/hello/stage1/java/io/BufferedWriter.class deleted file mode 100644 index 429c1a5804..0000000000 Binary files a/hello/stage1/java/io/BufferedWriter.class and /dev/null differ diff --git a/hello/stage1/java/io/ByteArrayInputStream.class b/hello/stage1/java/io/ByteArrayInputStream.class deleted file mode 100644 index 310912d4e3..0000000000 Binary files a/hello/stage1/java/io/ByteArrayInputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/ByteArrayOutputStream$Cell.class b/hello/stage1/java/io/ByteArrayOutputStream$Cell.class deleted file mode 100644 index 5eda03193e..0000000000 Binary files a/hello/stage1/java/io/ByteArrayOutputStream$Cell.class and /dev/null differ diff --git a/hello/stage1/java/io/ByteArrayOutputStream.class b/hello/stage1/java/io/ByteArrayOutputStream.class deleted file mode 100644 index 4f144c16a0..0000000000 Binary files a/hello/stage1/java/io/ByteArrayOutputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/EOFException.class b/hello/stage1/java/io/EOFException.class deleted file mode 100644 index add6a3870f..0000000000 Binary files a/hello/stage1/java/io/EOFException.class and /dev/null differ diff --git a/hello/stage1/java/io/Externalizable.class b/hello/stage1/java/io/Externalizable.class deleted file mode 100644 index a1d93ddf04..0000000000 Binary files a/hello/stage1/java/io/Externalizable.class and /dev/null differ diff --git a/hello/stage1/java/io/File$Pair.class b/hello/stage1/java/io/File$Pair.class deleted file mode 100644 index 1e4afaf029..0000000000 Binary files a/hello/stage1/java/io/File$Pair.class and /dev/null differ diff --git a/hello/stage1/java/io/File.class b/hello/stage1/java/io/File.class deleted file mode 100644 index 1db64237da..0000000000 Binary files a/hello/stage1/java/io/File.class and /dev/null differ diff --git a/hello/stage1/java/io/FileDescriptor.class b/hello/stage1/java/io/FileDescriptor.class deleted file mode 100644 index f5b6fcb899..0000000000 Binary files a/hello/stage1/java/io/FileDescriptor.class and /dev/null differ diff --git a/hello/stage1/java/io/FileInputStream.class b/hello/stage1/java/io/FileInputStream.class deleted file mode 100644 index e08cba5ddf..0000000000 Binary files a/hello/stage1/java/io/FileInputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/FileNotFoundException.class b/hello/stage1/java/io/FileNotFoundException.class deleted file mode 100644 index 05f89b3da2..0000000000 Binary files a/hello/stage1/java/io/FileNotFoundException.class and /dev/null differ diff --git a/hello/stage1/java/io/FileOutputStream.class b/hello/stage1/java/io/FileOutputStream.class deleted file mode 100644 index 4264f22a02..0000000000 Binary files a/hello/stage1/java/io/FileOutputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/FileReader.class b/hello/stage1/java/io/FileReader.class deleted file mode 100644 index 96630d64cb..0000000000 Binary files a/hello/stage1/java/io/FileReader.class and /dev/null differ diff --git a/hello/stage1/java/io/FileWriter.class b/hello/stage1/java/io/FileWriter.class deleted file mode 100644 index 866545cd3b..0000000000 Binary files a/hello/stage1/java/io/FileWriter.class and /dev/null differ diff --git a/hello/stage1/java/io/FilenameFilter.class b/hello/stage1/java/io/FilenameFilter.class deleted file mode 100644 index 44383f8032..0000000000 Binary files a/hello/stage1/java/io/FilenameFilter.class and /dev/null differ diff --git a/hello/stage1/java/io/FilterOutputStream.class b/hello/stage1/java/io/FilterOutputStream.class deleted file mode 100644 index e452178bf0..0000000000 Binary files a/hello/stage1/java/io/FilterOutputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/IOException.class b/hello/stage1/java/io/IOException.class deleted file mode 100644 index 56674fcb0b..0000000000 Binary files a/hello/stage1/java/io/IOException.class and /dev/null differ diff --git a/hello/stage1/java/io/InputStream.class b/hello/stage1/java/io/InputStream.class deleted file mode 100644 index 109e92aea2..0000000000 Binary files a/hello/stage1/java/io/InputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/InputStreamReader.class b/hello/stage1/java/io/InputStreamReader.class deleted file mode 100644 index 49d65726ee..0000000000 Binary files a/hello/stage1/java/io/InputStreamReader.class and /dev/null differ diff --git a/hello/stage1/java/io/LineNumberReader.class b/hello/stage1/java/io/LineNumberReader.class deleted file mode 100644 index ed60e3594b..0000000000 Binary files a/hello/stage1/java/io/LineNumberReader.class and /dev/null differ diff --git a/hello/stage1/java/io/NotSerializableException.class b/hello/stage1/java/io/NotSerializableException.class deleted file mode 100644 index ec9be2db72..0000000000 Binary files a/hello/stage1/java/io/NotSerializableException.class and /dev/null differ diff --git a/hello/stage1/java/io/ObjectInput.class b/hello/stage1/java/io/ObjectInput.class deleted file mode 100644 index 40246e742e..0000000000 Binary files a/hello/stage1/java/io/ObjectInput.class and /dev/null differ diff --git a/hello/stage1/java/io/ObjectInputStream.class b/hello/stage1/java/io/ObjectInputStream.class deleted file mode 100644 index dac5b1770c..0000000000 Binary files a/hello/stage1/java/io/ObjectInputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/ObjectOutput.class b/hello/stage1/java/io/ObjectOutput.class deleted file mode 100644 index dd3ccb1aec..0000000000 Binary files a/hello/stage1/java/io/ObjectOutput.class and /dev/null differ diff --git a/hello/stage1/java/io/ObjectOutputStream.class b/hello/stage1/java/io/ObjectOutputStream.class deleted file mode 100644 index 42b3596c5f..0000000000 Binary files a/hello/stage1/java/io/ObjectOutputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/ObjectStreamException.class b/hello/stage1/java/io/ObjectStreamException.class deleted file mode 100644 index b72153d8e3..0000000000 Binary files a/hello/stage1/java/io/ObjectStreamException.class and /dev/null differ diff --git a/hello/stage1/java/io/OutputStream.class b/hello/stage1/java/io/OutputStream.class deleted file mode 100644 index 7a0dde54d6..0000000000 Binary files a/hello/stage1/java/io/OutputStream.class and /dev/null differ diff --git a/hello/stage1/java/io/OutputStreamWriter.class b/hello/stage1/java/io/OutputStreamWriter.class deleted file mode 100644 index 2aae1fecb3..0000000000 Binary files a/hello/stage1/java/io/OutputStreamWriter.class and /dev/null differ diff --git a/hello/stage1/java/io/PrintStream$Static.class b/hello/stage1/java/io/PrintStream$Static.class deleted file mode 100644 index 0d45961b62..0000000000 Binary files a/hello/stage1/java/io/PrintStream$Static.class and /dev/null differ diff --git a/hello/stage1/java/io/PrintStream.class b/hello/stage1/java/io/PrintStream.class deleted file mode 100644 index f3fbf0c754..0000000000 Binary files a/hello/stage1/java/io/PrintStream.class and /dev/null differ diff --git a/hello/stage1/java/io/PrintWriter.class b/hello/stage1/java/io/PrintWriter.class deleted file mode 100644 index bc239d3d1a..0000000000 Binary files a/hello/stage1/java/io/PrintWriter.class and /dev/null differ diff --git a/hello/stage1/java/io/PushbackReader.class b/hello/stage1/java/io/PushbackReader.class deleted file mode 100644 index 8e69745921..0000000000 Binary files a/hello/stage1/java/io/PushbackReader.class and /dev/null differ diff --git a/hello/stage1/java/io/RandomAccessFile.class b/hello/stage1/java/io/RandomAccessFile.class deleted file mode 100644 index 2aa9f060aa..0000000000 Binary files a/hello/stage1/java/io/RandomAccessFile.class and /dev/null differ diff --git a/hello/stage1/java/io/Reader.class b/hello/stage1/java/io/Reader.class deleted file mode 100644 index 979c5cb52b..0000000000 Binary files a/hello/stage1/java/io/Reader.class and /dev/null differ diff --git a/hello/stage1/java/io/Serializable.class b/hello/stage1/java/io/Serializable.class deleted file mode 100644 index 187117d220..0000000000 Binary files a/hello/stage1/java/io/Serializable.class and /dev/null differ diff --git a/hello/stage1/java/io/StreamCorruptedException.class b/hello/stage1/java/io/StreamCorruptedException.class deleted file mode 100644 index c20d8130a1..0000000000 Binary files a/hello/stage1/java/io/StreamCorruptedException.class and /dev/null differ diff --git a/hello/stage1/java/io/StringReader.class b/hello/stage1/java/io/StringReader.class deleted file mode 100644 index 722922f695..0000000000 Binary files a/hello/stage1/java/io/StringReader.class and /dev/null differ diff --git a/hello/stage1/java/io/StringWriter.class b/hello/stage1/java/io/StringWriter.class deleted file mode 100644 index 61306aceee..0000000000 Binary files a/hello/stage1/java/io/StringWriter.class and /dev/null differ diff --git a/hello/stage1/java/io/UnsupportedEncodingException.class b/hello/stage1/java/io/UnsupportedEncodingException.class deleted file mode 100644 index e1aa3444d8..0000000000 Binary files a/hello/stage1/java/io/UnsupportedEncodingException.class and /dev/null differ diff --git a/hello/stage1/java/io/Writer.class b/hello/stage1/java/io/Writer.class deleted file mode 100644 index 1477960995..0000000000 Binary files a/hello/stage1/java/io/Writer.class and /dev/null differ diff --git a/hello/stage1/java/lang/AbstractMethodError.class b/hello/stage1/java/lang/AbstractMethodError.class deleted file mode 100644 index 236bb55945..0000000000 Binary files a/hello/stage1/java/lang/AbstractMethodError.class and /dev/null differ diff --git a/hello/stage1/java/lang/Appendable.class b/hello/stage1/java/lang/Appendable.class deleted file mode 100644 index e14361fc18..0000000000 Binary files a/hello/stage1/java/lang/Appendable.class and /dev/null differ diff --git a/hello/stage1/java/lang/ArithmeticException.class b/hello/stage1/java/lang/ArithmeticException.class deleted file mode 100644 index a94769f9c2..0000000000 Binary files a/hello/stage1/java/lang/ArithmeticException.class and /dev/null differ diff --git a/hello/stage1/java/lang/ArrayIndexOutOfBoundsException.class b/hello/stage1/java/lang/ArrayIndexOutOfBoundsException.class deleted file mode 100644 index 7ccee28049..0000000000 Binary files a/hello/stage1/java/lang/ArrayIndexOutOfBoundsException.class and /dev/null differ diff --git a/hello/stage1/java/lang/ArrayStoreException.class b/hello/stage1/java/lang/ArrayStoreException.class deleted file mode 100644 index 0636f8e556..0000000000 Binary files a/hello/stage1/java/lang/ArrayStoreException.class and /dev/null differ diff --git a/hello/stage1/java/lang/AssertionError.class b/hello/stage1/java/lang/AssertionError.class deleted file mode 100644 index 2b4469755c..0000000000 Binary files a/hello/stage1/java/lang/AssertionError.class and /dev/null differ diff --git a/hello/stage1/java/lang/Boolean.class b/hello/stage1/java/lang/Boolean.class deleted file mode 100644 index b0ca4d1663..0000000000 Binary files a/hello/stage1/java/lang/Boolean.class and /dev/null differ diff --git a/hello/stage1/java/lang/Byte.class b/hello/stage1/java/lang/Byte.class deleted file mode 100644 index f80233638b..0000000000 Binary files a/hello/stage1/java/lang/Byte.class and /dev/null differ diff --git a/hello/stage1/java/lang/CharSequence.class b/hello/stage1/java/lang/CharSequence.class deleted file mode 100644 index 12121efddb..0000000000 Binary files a/hello/stage1/java/lang/CharSequence.class and /dev/null differ diff --git a/hello/stage1/java/lang/Character.class b/hello/stage1/java/lang/Character.class deleted file mode 100644 index 251d47f224..0000000000 Binary files a/hello/stage1/java/lang/Character.class and /dev/null differ diff --git a/hello/stage1/java/lang/Class.class b/hello/stage1/java/lang/Class.class deleted file mode 100644 index b2cb774d5a..0000000000 Binary files a/hello/stage1/java/lang/Class.class and /dev/null differ diff --git a/hello/stage1/java/lang/ClassCastException.class b/hello/stage1/java/lang/ClassCastException.class deleted file mode 100644 index 43b6f3142d..0000000000 Binary files a/hello/stage1/java/lang/ClassCastException.class and /dev/null differ diff --git a/hello/stage1/java/lang/ClassLoader.class b/hello/stage1/java/lang/ClassLoader.class deleted file mode 100644 index d646910bef..0000000000 Binary files a/hello/stage1/java/lang/ClassLoader.class and /dev/null differ diff --git a/hello/stage1/java/lang/ClassNotFoundException.class b/hello/stage1/java/lang/ClassNotFoundException.class deleted file mode 100644 index a776dafa55..0000000000 Binary files a/hello/stage1/java/lang/ClassNotFoundException.class and /dev/null differ diff --git a/hello/stage1/java/lang/CloneNotSupportedException.class b/hello/stage1/java/lang/CloneNotSupportedException.class deleted file mode 100644 index 999c1000c7..0000000000 Binary files a/hello/stage1/java/lang/CloneNotSupportedException.class and /dev/null differ diff --git a/hello/stage1/java/lang/Cloneable.class b/hello/stage1/java/lang/Cloneable.class deleted file mode 100644 index d9e937109b..0000000000 Binary files a/hello/stage1/java/lang/Cloneable.class and /dev/null differ diff --git a/hello/stage1/java/lang/Comparable.class b/hello/stage1/java/lang/Comparable.class deleted file mode 100644 index 6d9a5cdc08..0000000000 Binary files a/hello/stage1/java/lang/Comparable.class and /dev/null differ diff --git a/hello/stage1/java/lang/Double.class b/hello/stage1/java/lang/Double.class deleted file mode 100644 index 181f6978b7..0000000000 Binary files a/hello/stage1/java/lang/Double.class and /dev/null differ diff --git a/hello/stage1/java/lang/Enum.class b/hello/stage1/java/lang/Enum.class deleted file mode 100644 index d42a6b9f0a..0000000000 Binary files a/hello/stage1/java/lang/Enum.class and /dev/null differ diff --git a/hello/stage1/java/lang/Error.class b/hello/stage1/java/lang/Error.class deleted file mode 100644 index 829a919c28..0000000000 Binary files a/hello/stage1/java/lang/Error.class and /dev/null differ diff --git a/hello/stage1/java/lang/Exception.class b/hello/stage1/java/lang/Exception.class deleted file mode 100644 index fc98802d3a..0000000000 Binary files a/hello/stage1/java/lang/Exception.class and /dev/null differ diff --git a/hello/stage1/java/lang/ExceptionInInitializerError.class b/hello/stage1/java/lang/ExceptionInInitializerError.class deleted file mode 100644 index 57e100766c..0000000000 Binary files a/hello/stage1/java/lang/ExceptionInInitializerError.class and /dev/null differ diff --git a/hello/stage1/java/lang/Float.class b/hello/stage1/java/lang/Float.class deleted file mode 100644 index 28fc8f9625..0000000000 Binary files a/hello/stage1/java/lang/Float.class and /dev/null differ diff --git a/hello/stage1/java/lang/IllegalAccessError.class b/hello/stage1/java/lang/IllegalAccessError.class deleted file mode 100644 index 13a6d16eba..0000000000 Binary files a/hello/stage1/java/lang/IllegalAccessError.class and /dev/null differ diff --git a/hello/stage1/java/lang/IllegalAccessException.class b/hello/stage1/java/lang/IllegalAccessException.class deleted file mode 100644 index 9112b4bf6a..0000000000 Binary files a/hello/stage1/java/lang/IllegalAccessException.class and /dev/null differ diff --git a/hello/stage1/java/lang/IllegalArgumentException.class b/hello/stage1/java/lang/IllegalArgumentException.class deleted file mode 100644 index 74b28de118..0000000000 Binary files a/hello/stage1/java/lang/IllegalArgumentException.class and /dev/null differ diff --git a/hello/stage1/java/lang/IllegalMonitorStateException.class b/hello/stage1/java/lang/IllegalMonitorStateException.class deleted file mode 100644 index 41f8aa9ac9..0000000000 Binary files a/hello/stage1/java/lang/IllegalMonitorStateException.class and /dev/null differ diff --git a/hello/stage1/java/lang/IllegalStateException.class b/hello/stage1/java/lang/IllegalStateException.class deleted file mode 100644 index 6788de26e4..0000000000 Binary files a/hello/stage1/java/lang/IllegalStateException.class and /dev/null differ diff --git a/hello/stage1/java/lang/IllegalThreadStateException.class b/hello/stage1/java/lang/IllegalThreadStateException.class deleted file mode 100644 index 5b37f2a02a..0000000000 Binary files a/hello/stage1/java/lang/IllegalThreadStateException.class and /dev/null differ diff --git a/hello/stage1/java/lang/IncompatibleClassChangeError.class b/hello/stage1/java/lang/IncompatibleClassChangeError.class deleted file mode 100644 index 98c21a680a..0000000000 Binary files a/hello/stage1/java/lang/IncompatibleClassChangeError.class and /dev/null differ diff --git a/hello/stage1/java/lang/IndexOutOfBoundsException.class b/hello/stage1/java/lang/IndexOutOfBoundsException.class deleted file mode 100644 index c15ba31832..0000000000 Binary files a/hello/stage1/java/lang/IndexOutOfBoundsException.class and /dev/null differ diff --git a/hello/stage1/java/lang/InheritableThreadLocal.class b/hello/stage1/java/lang/InheritableThreadLocal.class deleted file mode 100644 index 5caf70c7fe..0000000000 Binary files a/hello/stage1/java/lang/InheritableThreadLocal.class and /dev/null differ diff --git a/hello/stage1/java/lang/InstantiationError.class b/hello/stage1/java/lang/InstantiationError.class deleted file mode 100644 index bd5e4b3d00..0000000000 Binary files a/hello/stage1/java/lang/InstantiationError.class and /dev/null differ diff --git a/hello/stage1/java/lang/InstantiationException.class b/hello/stage1/java/lang/InstantiationException.class deleted file mode 100644 index ed10b820f4..0000000000 Binary files a/hello/stage1/java/lang/InstantiationException.class and /dev/null differ diff --git a/hello/stage1/java/lang/Integer.class b/hello/stage1/java/lang/Integer.class deleted file mode 100644 index f901b16a92..0000000000 Binary files a/hello/stage1/java/lang/Integer.class and /dev/null differ diff --git a/hello/stage1/java/lang/InterruptedException.class b/hello/stage1/java/lang/InterruptedException.class deleted file mode 100644 index a5e0c5dcd9..0000000000 Binary files a/hello/stage1/java/lang/InterruptedException.class and /dev/null differ diff --git a/hello/stage1/java/lang/Iterable.class b/hello/stage1/java/lang/Iterable.class deleted file mode 100644 index 13b241869e..0000000000 Binary files a/hello/stage1/java/lang/Iterable.class and /dev/null differ diff --git a/hello/stage1/java/lang/LinkageError.class b/hello/stage1/java/lang/LinkageError.class deleted file mode 100644 index 8ad2db2ca0..0000000000 Binary files a/hello/stage1/java/lang/LinkageError.class and /dev/null differ diff --git a/hello/stage1/java/lang/Long.class b/hello/stage1/java/lang/Long.class deleted file mode 100644 index 2349d0c2ed..0000000000 Binary files a/hello/stage1/java/lang/Long.class and /dev/null differ diff --git a/hello/stage1/java/lang/Math.class b/hello/stage1/java/lang/Math.class deleted file mode 100644 index 80f99fe1a9..0000000000 Binary files a/hello/stage1/java/lang/Math.class and /dev/null differ diff --git a/hello/stage1/java/lang/NegativeArraySizeException.class b/hello/stage1/java/lang/NegativeArraySizeException.class deleted file mode 100644 index d9f24feb16..0000000000 Binary files a/hello/stage1/java/lang/NegativeArraySizeException.class and /dev/null differ diff --git a/hello/stage1/java/lang/NoClassDefFoundError.class b/hello/stage1/java/lang/NoClassDefFoundError.class deleted file mode 100644 index 8271e81bcf..0000000000 Binary files a/hello/stage1/java/lang/NoClassDefFoundError.class and /dev/null differ diff --git a/hello/stage1/java/lang/NoSuchFieldError.class b/hello/stage1/java/lang/NoSuchFieldError.class deleted file mode 100644 index 003327588c..0000000000 Binary files a/hello/stage1/java/lang/NoSuchFieldError.class and /dev/null differ diff --git a/hello/stage1/java/lang/NoSuchFieldException.class b/hello/stage1/java/lang/NoSuchFieldException.class deleted file mode 100644 index 67983f453a..0000000000 Binary files a/hello/stage1/java/lang/NoSuchFieldException.class and /dev/null differ diff --git a/hello/stage1/java/lang/NoSuchMethodError.class b/hello/stage1/java/lang/NoSuchMethodError.class deleted file mode 100644 index 7cb6613484..0000000000 Binary files a/hello/stage1/java/lang/NoSuchMethodError.class and /dev/null differ diff --git a/hello/stage1/java/lang/NoSuchMethodException.class b/hello/stage1/java/lang/NoSuchMethodException.class deleted file mode 100644 index 2643496787..0000000000 Binary files a/hello/stage1/java/lang/NoSuchMethodException.class and /dev/null differ diff --git a/hello/stage1/java/lang/NullPointerException.class b/hello/stage1/java/lang/NullPointerException.class deleted file mode 100644 index 87c87e6fdb..0000000000 Binary files a/hello/stage1/java/lang/NullPointerException.class and /dev/null differ diff --git a/hello/stage1/java/lang/Number.class b/hello/stage1/java/lang/Number.class deleted file mode 100644 index 71b65d0766..0000000000 Binary files a/hello/stage1/java/lang/Number.class and /dev/null differ diff --git a/hello/stage1/java/lang/NumberFormatException.class b/hello/stage1/java/lang/NumberFormatException.class deleted file mode 100644 index cebea4bbb9..0000000000 Binary files a/hello/stage1/java/lang/NumberFormatException.class and /dev/null differ diff --git a/hello/stage1/java/lang/Object.class b/hello/stage1/java/lang/Object.class deleted file mode 100644 index 0b610b57b9..0000000000 Binary files a/hello/stage1/java/lang/Object.class and /dev/null differ diff --git a/hello/stage1/java/lang/OutOfMemoryError.class b/hello/stage1/java/lang/OutOfMemoryError.class deleted file mode 100644 index ae9808c3f9..0000000000 Binary files a/hello/stage1/java/lang/OutOfMemoryError.class and /dev/null differ diff --git a/hello/stage1/java/lang/Override.class b/hello/stage1/java/lang/Override.class deleted file mode 100644 index b11e2e0cf1..0000000000 Binary files a/hello/stage1/java/lang/Override.class and /dev/null differ diff --git a/hello/stage1/java/lang/Package.class b/hello/stage1/java/lang/Package.class deleted file mode 100644 index 84cac8f3e1..0000000000 Binary files a/hello/stage1/java/lang/Package.class and /dev/null differ diff --git a/hello/stage1/java/lang/Process.class b/hello/stage1/java/lang/Process.class deleted file mode 100644 index ab045ca251..0000000000 Binary files a/hello/stage1/java/lang/Process.class and /dev/null differ diff --git a/hello/stage1/java/lang/ReflectiveOperationException.class b/hello/stage1/java/lang/ReflectiveOperationException.class deleted file mode 100644 index dec6f208cc..0000000000 Binary files a/hello/stage1/java/lang/ReflectiveOperationException.class and /dev/null differ diff --git a/hello/stage1/java/lang/Runnable.class b/hello/stage1/java/lang/Runnable.class deleted file mode 100644 index b50c713c0c..0000000000 Binary files a/hello/stage1/java/lang/Runnable.class and /dev/null differ diff --git a/hello/stage1/java/lang/Runtime$1.class b/hello/stage1/java/lang/Runtime$1.class deleted file mode 100644 index 4cdea4d0b2..0000000000 Binary files a/hello/stage1/java/lang/Runtime$1.class and /dev/null differ diff --git a/hello/stage1/java/lang/Runtime$MyProcess.class b/hello/stage1/java/lang/Runtime$MyProcess.class deleted file mode 100644 index 048ba7998e..0000000000 Binary files a/hello/stage1/java/lang/Runtime$MyProcess.class and /dev/null differ diff --git a/hello/stage1/java/lang/Runtime.class b/hello/stage1/java/lang/Runtime.class deleted file mode 100644 index 53ef7dee26..0000000000 Binary files a/hello/stage1/java/lang/Runtime.class and /dev/null differ diff --git a/hello/stage1/java/lang/RuntimeException.class b/hello/stage1/java/lang/RuntimeException.class deleted file mode 100644 index d8c5eaa404..0000000000 Binary files a/hello/stage1/java/lang/RuntimeException.class and /dev/null differ diff --git a/hello/stage1/java/lang/RuntimePermission.class b/hello/stage1/java/lang/RuntimePermission.class deleted file mode 100644 index 99807a7f3b..0000000000 Binary files a/hello/stage1/java/lang/RuntimePermission.class and /dev/null differ diff --git a/hello/stage1/java/lang/SecurityException.class b/hello/stage1/java/lang/SecurityException.class deleted file mode 100644 index b882c3be3f..0000000000 Binary files a/hello/stage1/java/lang/SecurityException.class and /dev/null differ diff --git a/hello/stage1/java/lang/SecurityManager.class b/hello/stage1/java/lang/SecurityManager.class deleted file mode 100644 index 4c3e3eb752..0000000000 Binary files a/hello/stage1/java/lang/SecurityManager.class and /dev/null differ diff --git a/hello/stage1/java/lang/Short.class b/hello/stage1/java/lang/Short.class deleted file mode 100644 index ebc72c4c95..0000000000 Binary files a/hello/stage1/java/lang/Short.class and /dev/null differ diff --git a/hello/stage1/java/lang/StackOverflowError.class b/hello/stage1/java/lang/StackOverflowError.class deleted file mode 100644 index c0f5236840..0000000000 Binary files a/hello/stage1/java/lang/StackOverflowError.class and /dev/null differ diff --git a/hello/stage1/java/lang/StackTraceElement.class b/hello/stage1/java/lang/StackTraceElement.class deleted file mode 100644 index b2e41770c2..0000000000 Binary files a/hello/stage1/java/lang/StackTraceElement.class and /dev/null differ diff --git a/hello/stage1/java/lang/String$1.class b/hello/stage1/java/lang/String$1.class deleted file mode 100644 index 75b115c0d5..0000000000 Binary files a/hello/stage1/java/lang/String$1.class and /dev/null differ diff --git a/hello/stage1/java/lang/String.class b/hello/stage1/java/lang/String.class deleted file mode 100644 index e1828d3266..0000000000 Binary files a/hello/stage1/java/lang/String.class and /dev/null differ diff --git a/hello/stage1/java/lang/StringBuffer.class b/hello/stage1/java/lang/StringBuffer.class deleted file mode 100644 index dcad67574a..0000000000 Binary files a/hello/stage1/java/lang/StringBuffer.class and /dev/null differ diff --git a/hello/stage1/java/lang/StringBuilder$Cell.class b/hello/stage1/java/lang/StringBuilder$Cell.class deleted file mode 100644 index 9c6539dee1..0000000000 Binary files a/hello/stage1/java/lang/StringBuilder$Cell.class and /dev/null differ diff --git a/hello/stage1/java/lang/StringBuilder.class b/hello/stage1/java/lang/StringBuilder.class deleted file mode 100644 index 98907a3d68..0000000000 Binary files a/hello/stage1/java/lang/StringBuilder.class and /dev/null differ diff --git a/hello/stage1/java/lang/SuppressWarnings.class b/hello/stage1/java/lang/SuppressWarnings.class deleted file mode 100644 index 40e1d43187..0000000000 Binary files a/hello/stage1/java/lang/SuppressWarnings.class and /dev/null differ diff --git a/hello/stage1/java/lang/System$Property.class b/hello/stage1/java/lang/System$Property.class deleted file mode 100644 index c063fec4f3..0000000000 Binary files a/hello/stage1/java/lang/System$Property.class and /dev/null differ diff --git a/hello/stage1/java/lang/System.class b/hello/stage1/java/lang/System.class deleted file mode 100644 index 2dc8cc032d..0000000000 Binary files a/hello/stage1/java/lang/System.class and /dev/null differ diff --git a/hello/stage1/java/lang/Thread$1.class b/hello/stage1/java/lang/Thread$1.class deleted file mode 100644 index f66decefd6..0000000000 Binary files a/hello/stage1/java/lang/Thread$1.class and /dev/null differ diff --git a/hello/stage1/java/lang/Thread$State.class b/hello/stage1/java/lang/Thread$State.class deleted file mode 100644 index 83bef2c01b..0000000000 Binary files a/hello/stage1/java/lang/Thread$State.class and /dev/null differ diff --git a/hello/stage1/java/lang/Thread$UncaughtExceptionHandler.class b/hello/stage1/java/lang/Thread$UncaughtExceptionHandler.class deleted file mode 100644 index 1cc8710e94..0000000000 Binary files a/hello/stage1/java/lang/Thread$UncaughtExceptionHandler.class and /dev/null differ diff --git a/hello/stage1/java/lang/Thread.class b/hello/stage1/java/lang/Thread.class deleted file mode 100644 index 552e2b1919..0000000000 Binary files a/hello/stage1/java/lang/Thread.class and /dev/null differ diff --git a/hello/stage1/java/lang/ThreadDeath.class b/hello/stage1/java/lang/ThreadDeath.class deleted file mode 100644 index 79d53976bf..0000000000 Binary files a/hello/stage1/java/lang/ThreadDeath.class and /dev/null differ diff --git a/hello/stage1/java/lang/ThreadGroup.class b/hello/stage1/java/lang/ThreadGroup.class deleted file mode 100644 index 9973b77273..0000000000 Binary files a/hello/stage1/java/lang/ThreadGroup.class and /dev/null differ diff --git a/hello/stage1/java/lang/ThreadLocal.class b/hello/stage1/java/lang/ThreadLocal.class deleted file mode 100644 index 19837d2174..0000000000 Binary files a/hello/stage1/java/lang/ThreadLocal.class and /dev/null differ diff --git a/hello/stage1/java/lang/Throwable.class b/hello/stage1/java/lang/Throwable.class deleted file mode 100644 index 66e28434e5..0000000000 Binary files a/hello/stage1/java/lang/Throwable.class and /dev/null differ diff --git a/hello/stage1/java/lang/UnsatisfiedLinkError.class b/hello/stage1/java/lang/UnsatisfiedLinkError.class deleted file mode 100644 index ede00c23e4..0000000000 Binary files a/hello/stage1/java/lang/UnsatisfiedLinkError.class and /dev/null differ diff --git a/hello/stage1/java/lang/UnsupportedOperationException.class b/hello/stage1/java/lang/UnsupportedOperationException.class deleted file mode 100644 index dc62cfb8e5..0000000000 Binary files a/hello/stage1/java/lang/UnsupportedOperationException.class and /dev/null differ diff --git a/hello/stage1/java/lang/VirtualMachineError.class b/hello/stage1/java/lang/VirtualMachineError.class deleted file mode 100644 index 93e295efb6..0000000000 Binary files a/hello/stage1/java/lang/VirtualMachineError.class and /dev/null differ diff --git a/hello/stage1/java/lang/Void.class b/hello/stage1/java/lang/Void.class deleted file mode 100644 index d0fdac0c20..0000000000 Binary files a/hello/stage1/java/lang/Void.class and /dev/null differ diff --git a/hello/stage1/java/lang/annotation/Annotation.class b/hello/stage1/java/lang/annotation/Annotation.class deleted file mode 100644 index 373cf28af5..0000000000 Binary files a/hello/stage1/java/lang/annotation/Annotation.class and /dev/null differ diff --git a/hello/stage1/java/lang/annotation/ElementType.class b/hello/stage1/java/lang/annotation/ElementType.class deleted file mode 100644 index a77fb229d1..0000000000 Binary files a/hello/stage1/java/lang/annotation/ElementType.class and /dev/null differ diff --git a/hello/stage1/java/lang/annotation/Retention.class b/hello/stage1/java/lang/annotation/Retention.class deleted file mode 100644 index f186d42afa..0000000000 Binary files a/hello/stage1/java/lang/annotation/Retention.class and /dev/null differ diff --git a/hello/stage1/java/lang/annotation/RetentionPolicy.class b/hello/stage1/java/lang/annotation/RetentionPolicy.class deleted file mode 100644 index a55c765927..0000000000 Binary files a/hello/stage1/java/lang/annotation/RetentionPolicy.class and /dev/null differ diff --git a/hello/stage1/java/lang/annotation/Target.class b/hello/stage1/java/lang/annotation/Target.class deleted file mode 100644 index cce190790f..0000000000 Binary files a/hello/stage1/java/lang/annotation/Target.class and /dev/null differ diff --git a/hello/stage1/java/lang/ref/PhantomReference.class b/hello/stage1/java/lang/ref/PhantomReference.class deleted file mode 100644 index ea42f36bfc..0000000000 Binary files a/hello/stage1/java/lang/ref/PhantomReference.class and /dev/null differ diff --git a/hello/stage1/java/lang/ref/Reference.class b/hello/stage1/java/lang/ref/Reference.class deleted file mode 100644 index 4ed25d5800..0000000000 Binary files a/hello/stage1/java/lang/ref/Reference.class and /dev/null differ diff --git a/hello/stage1/java/lang/ref/ReferenceQueue.class b/hello/stage1/java/lang/ref/ReferenceQueue.class deleted file mode 100644 index 77e64ff96f..0000000000 Binary files a/hello/stage1/java/lang/ref/ReferenceQueue.class and /dev/null differ diff --git a/hello/stage1/java/lang/ref/SoftReference.class b/hello/stage1/java/lang/ref/SoftReference.class deleted file mode 100644 index fa76e4a2ba..0000000000 Binary files a/hello/stage1/java/lang/ref/SoftReference.class and /dev/null differ diff --git a/hello/stage1/java/lang/ref/WeakReference.class b/hello/stage1/java/lang/ref/WeakReference.class deleted file mode 100644 index 734ed2ddef..0000000000 Binary files a/hello/stage1/java/lang/ref/WeakReference.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/AccessibleObject.class b/hello/stage1/java/lang/reflect/AccessibleObject.class deleted file mode 100644 index 85a684a58f..0000000000 Binary files a/hello/stage1/java/lang/reflect/AccessibleObject.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/AnnotatedElement.class b/hello/stage1/java/lang/reflect/AnnotatedElement.class deleted file mode 100644 index 82998ec1d2..0000000000 Binary files a/hello/stage1/java/lang/reflect/AnnotatedElement.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/Array.class b/hello/stage1/java/lang/reflect/Array.class deleted file mode 100644 index 3cb58fc390..0000000000 Binary files a/hello/stage1/java/lang/reflect/Array.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/Constructor.class b/hello/stage1/java/lang/reflect/Constructor.class deleted file mode 100644 index f91fd8a355..0000000000 Binary files a/hello/stage1/java/lang/reflect/Constructor.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/Field.class b/hello/stage1/java/lang/reflect/Field.class deleted file mode 100644 index ccbe102a49..0000000000 Binary files a/hello/stage1/java/lang/reflect/Field.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/InvocationHandler.class b/hello/stage1/java/lang/reflect/InvocationHandler.class deleted file mode 100644 index 99ef284a65..0000000000 Binary files a/hello/stage1/java/lang/reflect/InvocationHandler.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/InvocationTargetException.class b/hello/stage1/java/lang/reflect/InvocationTargetException.class deleted file mode 100644 index c93d5dd443..0000000000 Binary files a/hello/stage1/java/lang/reflect/InvocationTargetException.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/Member.class b/hello/stage1/java/lang/reflect/Member.class deleted file mode 100644 index c087c6be22..0000000000 Binary files a/hello/stage1/java/lang/reflect/Member.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/Method.class b/hello/stage1/java/lang/reflect/Method.class deleted file mode 100644 index bb1c983b1d..0000000000 Binary files a/hello/stage1/java/lang/reflect/Method.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/Modifier.class b/hello/stage1/java/lang/reflect/Modifier.class deleted file mode 100644 index 0f64a6b1aa..0000000000 Binary files a/hello/stage1/java/lang/reflect/Modifier.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/Proxy.class b/hello/stage1/java/lang/reflect/Proxy.class deleted file mode 100644 index 37b2b8fa65..0000000000 Binary files a/hello/stage1/java/lang/reflect/Proxy.class and /dev/null differ diff --git a/hello/stage1/java/lang/reflect/Type.class b/hello/stage1/java/lang/reflect/Type.class deleted file mode 100644 index d30373b187..0000000000 Binary files a/hello/stage1/java/lang/reflect/Type.class and /dev/null differ diff --git a/hello/stage1/java/net/InetAddress.class b/hello/stage1/java/net/InetAddress.class deleted file mode 100644 index 11d40059e9..0000000000 Binary files a/hello/stage1/java/net/InetAddress.class and /dev/null differ diff --git a/hello/stage1/java/net/InetSocketAddress.class b/hello/stage1/java/net/InetSocketAddress.class deleted file mode 100644 index b0dc56c417..0000000000 Binary files a/hello/stage1/java/net/InetSocketAddress.class and /dev/null differ diff --git a/hello/stage1/java/net/JarURLConnection.class b/hello/stage1/java/net/JarURLConnection.class deleted file mode 100644 index 7522808919..0000000000 Binary files a/hello/stage1/java/net/JarURLConnection.class and /dev/null differ diff --git a/hello/stage1/java/net/MalformedURLException.class b/hello/stage1/java/net/MalformedURLException.class deleted file mode 100644 index 1f8640028a..0000000000 Binary files a/hello/stage1/java/net/MalformedURLException.class and /dev/null differ diff --git a/hello/stage1/java/net/ServerSocket.class b/hello/stage1/java/net/ServerSocket.class deleted file mode 100644 index 7b4f46045d..0000000000 Binary files a/hello/stage1/java/net/ServerSocket.class and /dev/null differ diff --git a/hello/stage1/java/net/Socket.class b/hello/stage1/java/net/Socket.class deleted file mode 100644 index 20c7f8b877..0000000000 Binary files a/hello/stage1/java/net/Socket.class and /dev/null differ diff --git a/hello/stage1/java/net/SocketAddress.class b/hello/stage1/java/net/SocketAddress.class deleted file mode 100644 index cb7dcbf5c9..0000000000 Binary files a/hello/stage1/java/net/SocketAddress.class and /dev/null differ diff --git a/hello/stage1/java/net/SocketException.class b/hello/stage1/java/net/SocketException.class deleted file mode 100644 index 53fb070a95..0000000000 Binary files a/hello/stage1/java/net/SocketException.class and /dev/null differ diff --git a/hello/stage1/java/net/URL.class b/hello/stage1/java/net/URL.class deleted file mode 100644 index b1836e35d0..0000000000 Binary files a/hello/stage1/java/net/URL.class and /dev/null differ diff --git a/hello/stage1/java/net/URLConnection.class b/hello/stage1/java/net/URLConnection.class deleted file mode 100644 index 2c27304ce8..0000000000 Binary files a/hello/stage1/java/net/URLConnection.class and /dev/null differ diff --git a/hello/stage1/java/net/URLStreamHandler.class b/hello/stage1/java/net/URLStreamHandler.class deleted file mode 100644 index bd2093d547..0000000000 Binary files a/hello/stage1/java/net/URLStreamHandler.class and /dev/null differ diff --git a/hello/stage1/java/net/UnknownHostException.class b/hello/stage1/java/net/UnknownHostException.class deleted file mode 100644 index 22b8a5b9d7..0000000000 Binary files a/hello/stage1/java/net/UnknownHostException.class and /dev/null differ diff --git a/hello/stage1/java/net/UnknownServiceException.class b/hello/stage1/java/net/UnknownServiceException.class deleted file mode 100644 index 7e8c9e78c1..0000000000 Binary files a/hello/stage1/java/net/UnknownServiceException.class and /dev/null differ diff --git a/hello/stage1/java/nio/Buffer.class b/hello/stage1/java/nio/Buffer.class deleted file mode 100644 index defb201fe9..0000000000 Binary files a/hello/stage1/java/nio/Buffer.class and /dev/null differ diff --git a/hello/stage1/java/nio/ByteBuffer.class b/hello/stage1/java/nio/ByteBuffer.class deleted file mode 100644 index 950b900b40..0000000000 Binary files a/hello/stage1/java/nio/ByteBuffer.class and /dev/null differ diff --git a/hello/stage1/java/nio/ReadOnlyBufferException.class b/hello/stage1/java/nio/ReadOnlyBufferException.class deleted file mode 100644 index 48940df40b..0000000000 Binary files a/hello/stage1/java/nio/ReadOnlyBufferException.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/Channel.class b/hello/stage1/java/nio/channels/Channel.class deleted file mode 100644 index af21855d52..0000000000 Binary files a/hello/stage1/java/nio/channels/Channel.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/Channels$InputStreamChannel.class b/hello/stage1/java/nio/channels/Channels$InputStreamChannel.class deleted file mode 100644 index fc054b6c77..0000000000 Binary files a/hello/stage1/java/nio/channels/Channels$InputStreamChannel.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/Channels$MyInputStream.class b/hello/stage1/java/nio/channels/Channels$MyInputStream.class deleted file mode 100644 index 2986ca7a5f..0000000000 Binary files a/hello/stage1/java/nio/channels/Channels$MyInputStream.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/Channels$MyOutputStream.class b/hello/stage1/java/nio/channels/Channels$MyOutputStream.class deleted file mode 100644 index f8b6c647e5..0000000000 Binary files a/hello/stage1/java/nio/channels/Channels$MyOutputStream.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/Channels$OutputStreamChannel.class b/hello/stage1/java/nio/channels/Channels$OutputStreamChannel.class deleted file mode 100644 index 639894aaa7..0000000000 Binary files a/hello/stage1/java/nio/channels/Channels$OutputStreamChannel.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/Channels.class b/hello/stage1/java/nio/channels/Channels.class deleted file mode 100644 index b67d4e88cf..0000000000 Binary files a/hello/stage1/java/nio/channels/Channels.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/ClosedSelectorException.class b/hello/stage1/java/nio/channels/ClosedSelectorException.class deleted file mode 100644 index 48228a2352..0000000000 Binary files a/hello/stage1/java/nio/channels/ClosedSelectorException.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/GatheringByteChannel.class b/hello/stage1/java/nio/channels/GatheringByteChannel.class deleted file mode 100644 index 293374d47f..0000000000 Binary files a/hello/stage1/java/nio/channels/GatheringByteChannel.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/ReadableByteChannel.class b/hello/stage1/java/nio/channels/ReadableByteChannel.class deleted file mode 100644 index d229a49a3e..0000000000 Binary files a/hello/stage1/java/nio/channels/ReadableByteChannel.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/SelectableChannel.class b/hello/stage1/java/nio/channels/SelectableChannel.class deleted file mode 100644 index f6479e3e83..0000000000 Binary files a/hello/stage1/java/nio/channels/SelectableChannel.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/SelectionKey.class b/hello/stage1/java/nio/channels/SelectionKey.class deleted file mode 100644 index 5e3f642daf..0000000000 Binary files a/hello/stage1/java/nio/channels/SelectionKey.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/Selector.class b/hello/stage1/java/nio/channels/Selector.class deleted file mode 100644 index 13dd3efd13..0000000000 Binary files a/hello/stage1/java/nio/channels/Selector.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/ServerSocketChannel$Handle.class b/hello/stage1/java/nio/channels/ServerSocketChannel$Handle.class deleted file mode 100644 index ec51b977f2..0000000000 Binary files a/hello/stage1/java/nio/channels/ServerSocketChannel$Handle.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/ServerSocketChannel.class b/hello/stage1/java/nio/channels/ServerSocketChannel.class deleted file mode 100644 index 52eff8a035..0000000000 Binary files a/hello/stage1/java/nio/channels/ServerSocketChannel.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/SocketChannel$Handle.class b/hello/stage1/java/nio/channels/SocketChannel$Handle.class deleted file mode 100644 index 584dfd7a02..0000000000 Binary files a/hello/stage1/java/nio/channels/SocketChannel$Handle.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/SocketChannel.class b/hello/stage1/java/nio/channels/SocketChannel.class deleted file mode 100644 index 9dc163aefd..0000000000 Binary files a/hello/stage1/java/nio/channels/SocketChannel.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/SocketSelector.class b/hello/stage1/java/nio/channels/SocketSelector.class deleted file mode 100644 index 1e70697275..0000000000 Binary files a/hello/stage1/java/nio/channels/SocketSelector.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/UnsupportedAddressTypeException.class b/hello/stage1/java/nio/channels/UnsupportedAddressTypeException.class deleted file mode 100644 index 0e372df282..0000000000 Binary files a/hello/stage1/java/nio/channels/UnsupportedAddressTypeException.class and /dev/null differ diff --git a/hello/stage1/java/nio/channels/WritableByteChannel.class b/hello/stage1/java/nio/channels/WritableByteChannel.class deleted file mode 100644 index c989de48ec..0000000000 Binary files a/hello/stage1/java/nio/channels/WritableByteChannel.class and /dev/null differ diff --git a/hello/stage1/java/security/AccessControlException.class b/hello/stage1/java/security/AccessControlException.class deleted file mode 100644 index 952030f9df..0000000000 Binary files a/hello/stage1/java/security/AccessControlException.class and /dev/null differ diff --git a/hello/stage1/java/security/AccessController.class b/hello/stage1/java/security/AccessController.class deleted file mode 100644 index 0cfd36c095..0000000000 Binary files a/hello/stage1/java/security/AccessController.class and /dev/null differ diff --git a/hello/stage1/java/security/AllPermission.class b/hello/stage1/java/security/AllPermission.class deleted file mode 100644 index 8d24e3a75a..0000000000 Binary files a/hello/stage1/java/security/AllPermission.class and /dev/null differ diff --git a/hello/stage1/java/security/BasicPermission.class b/hello/stage1/java/security/BasicPermission.class deleted file mode 100644 index ad0ef893b0..0000000000 Binary files a/hello/stage1/java/security/BasicPermission.class and /dev/null differ diff --git a/hello/stage1/java/security/CodeSource.class b/hello/stage1/java/security/CodeSource.class deleted file mode 100644 index 97b8fa0f34..0000000000 Binary files a/hello/stage1/java/security/CodeSource.class and /dev/null differ diff --git a/hello/stage1/java/security/Permission.class b/hello/stage1/java/security/Permission.class deleted file mode 100644 index c18dd37a8a..0000000000 Binary files a/hello/stage1/java/security/Permission.class and /dev/null differ diff --git a/hello/stage1/java/security/PermissionCollection.class b/hello/stage1/java/security/PermissionCollection.class deleted file mode 100644 index 444c9fab93..0000000000 Binary files a/hello/stage1/java/security/PermissionCollection.class and /dev/null differ diff --git a/hello/stage1/java/security/Permissions$1.class b/hello/stage1/java/security/Permissions$1.class deleted file mode 100644 index 4d6b8f736a..0000000000 Binary files a/hello/stage1/java/security/Permissions$1.class and /dev/null differ diff --git a/hello/stage1/java/security/Permissions$MyPermissionCollection.class b/hello/stage1/java/security/Permissions$MyPermissionCollection.class deleted file mode 100644 index 040728429e..0000000000 Binary files a/hello/stage1/java/security/Permissions$MyPermissionCollection.class and /dev/null differ diff --git a/hello/stage1/java/security/Permissions.class b/hello/stage1/java/security/Permissions.class deleted file mode 100644 index 0eca9d95ac..0000000000 Binary files a/hello/stage1/java/security/Permissions.class and /dev/null differ diff --git a/hello/stage1/java/security/PrivilegedAction.class b/hello/stage1/java/security/PrivilegedAction.class deleted file mode 100644 index cffde329c0..0000000000 Binary files a/hello/stage1/java/security/PrivilegedAction.class and /dev/null differ diff --git a/hello/stage1/java/security/ProtectionDomain.class b/hello/stage1/java/security/ProtectionDomain.class deleted file mode 100644 index 5aca5341c5..0000000000 Binary files a/hello/stage1/java/security/ProtectionDomain.class and /dev/null differ diff --git a/hello/stage1/java/security/SecurityPermission.class b/hello/stage1/java/security/SecurityPermission.class deleted file mode 100644 index cf592f3277..0000000000 Binary files a/hello/stage1/java/security/SecurityPermission.class and /dev/null differ diff --git a/hello/stage1/java/security/cert/Certificate.class b/hello/stage1/java/security/cert/Certificate.class deleted file mode 100644 index 5e8b00734d..0000000000 Binary files a/hello/stage1/java/security/cert/Certificate.class and /dev/null differ diff --git a/hello/stage1/java/text/DateFormatSymbols.class b/hello/stage1/java/text/DateFormatSymbols.class deleted file mode 100644 index 56891a1ea7..0000000000 Binary files a/hello/stage1/java/text/DateFormatSymbols.class and /dev/null differ diff --git a/hello/stage1/java/text/FieldPosition.class b/hello/stage1/java/text/FieldPosition.class deleted file mode 100644 index 13d0763e34..0000000000 Binary files a/hello/stage1/java/text/FieldPosition.class and /dev/null differ diff --git a/hello/stage1/java/text/Format.class b/hello/stage1/java/text/Format.class deleted file mode 100644 index 011731680d..0000000000 Binary files a/hello/stage1/java/text/Format.class and /dev/null differ diff --git a/hello/stage1/java/text/MessageFormat.class b/hello/stage1/java/text/MessageFormat.class deleted file mode 100644 index 16f6befc8d..0000000000 Binary files a/hello/stage1/java/text/MessageFormat.class and /dev/null differ diff --git a/hello/stage1/java/util/AbstractCollection.class b/hello/stage1/java/util/AbstractCollection.class deleted file mode 100644 index 4974eabed3..0000000000 Binary files a/hello/stage1/java/util/AbstractCollection.class and /dev/null differ diff --git a/hello/stage1/java/util/AbstractList.class b/hello/stage1/java/util/AbstractList.class deleted file mode 100644 index 91c7021bec..0000000000 Binary files a/hello/stage1/java/util/AbstractList.class and /dev/null differ diff --git a/hello/stage1/java/util/AbstractMap.class b/hello/stage1/java/util/AbstractMap.class deleted file mode 100644 index 6203629db6..0000000000 Binary files a/hello/stage1/java/util/AbstractMap.class and /dev/null differ diff --git a/hello/stage1/java/util/AbstractQueue.class b/hello/stage1/java/util/AbstractQueue.class deleted file mode 100644 index fab35151b7..0000000000 Binary files a/hello/stage1/java/util/AbstractQueue.class and /dev/null differ diff --git a/hello/stage1/java/util/AbstractSequentialList.class b/hello/stage1/java/util/AbstractSequentialList.class deleted file mode 100644 index 9fd89dda6c..0000000000 Binary files a/hello/stage1/java/util/AbstractSequentialList.class and /dev/null differ diff --git a/hello/stage1/java/util/AbstractSet.class b/hello/stage1/java/util/AbstractSet.class deleted file mode 100644 index dd41d8bd83..0000000000 Binary files a/hello/stage1/java/util/AbstractSet.class and /dev/null differ diff --git a/hello/stage1/java/util/ArrayList.class b/hello/stage1/java/util/ArrayList.class deleted file mode 100644 index b8752a3634..0000000000 Binary files a/hello/stage1/java/util/ArrayList.class and /dev/null differ diff --git a/hello/stage1/java/util/Arrays$1.class b/hello/stage1/java/util/Arrays$1.class deleted file mode 100644 index 5c7773467b..0000000000 Binary files a/hello/stage1/java/util/Arrays$1.class and /dev/null differ diff --git a/hello/stage1/java/util/Arrays$2.class b/hello/stage1/java/util/Arrays$2.class deleted file mode 100644 index d6e90bb690..0000000000 Binary files a/hello/stage1/java/util/Arrays$2.class and /dev/null differ diff --git a/hello/stage1/java/util/Arrays.class b/hello/stage1/java/util/Arrays.class deleted file mode 100644 index 7656cf0d53..0000000000 Binary files a/hello/stage1/java/util/Arrays.class and /dev/null differ diff --git a/hello/stage1/java/util/BitSet.class b/hello/stage1/java/util/BitSet.class deleted file mode 100644 index 5a47337a94..0000000000 Binary files a/hello/stage1/java/util/BitSet.class and /dev/null differ diff --git a/hello/stage1/java/util/Calendar$MyCalendar.class b/hello/stage1/java/util/Calendar$MyCalendar.class deleted file mode 100644 index b11b5e1513..0000000000 Binary files a/hello/stage1/java/util/Calendar$MyCalendar.class and /dev/null differ diff --git a/hello/stage1/java/util/Calendar.class b/hello/stage1/java/util/Calendar.class deleted file mode 100644 index 3ba311e638..0000000000 Binary files a/hello/stage1/java/util/Calendar.class and /dev/null differ diff --git a/hello/stage1/java/util/Collection.class b/hello/stage1/java/util/Collection.class deleted file mode 100644 index 0a2218b68b..0000000000 Binary files a/hello/stage1/java/util/Collection.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$ArrayListIterator.class b/hello/stage1/java/util/Collections$ArrayListIterator.class deleted file mode 100644 index bdaf8d85b5..0000000000 Binary files a/hello/stage1/java/util/Collections$ArrayListIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$IteratorEnumeration.class b/hello/stage1/java/util/Collections$IteratorEnumeration.class deleted file mode 100644 index 9a98fe3dcf..0000000000 Binary files a/hello/stage1/java/util/Collections$IteratorEnumeration.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$KeyIterator.class b/hello/stage1/java/util/Collections$KeyIterator.class deleted file mode 100644 index 6f602aa5c6..0000000000 Binary files a/hello/stage1/java/util/Collections$KeyIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$ReverseComparator.class b/hello/stage1/java/util/Collections$ReverseComparator.class deleted file mode 100644 index e026c9f787..0000000000 Binary files a/hello/stage1/java/util/Collections$ReverseComparator.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$SynchronizedCollection.class b/hello/stage1/java/util/Collections$SynchronizedCollection.class deleted file mode 100644 index cffee6d5f3..0000000000 Binary files a/hello/stage1/java/util/Collections$SynchronizedCollection.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$SynchronizedIterator.class b/hello/stage1/java/util/Collections$SynchronizedIterator.class deleted file mode 100644 index 8496bc1aba..0000000000 Binary files a/hello/stage1/java/util/Collections$SynchronizedIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$SynchronizedMap.class b/hello/stage1/java/util/Collections$SynchronizedMap.class deleted file mode 100644 index dcb0e325c7..0000000000 Binary files a/hello/stage1/java/util/Collections$SynchronizedMap.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$SynchronizedSet.class b/hello/stage1/java/util/Collections$SynchronizedSet.class deleted file mode 100644 index c8a6fb7f80..0000000000 Binary files a/hello/stage1/java/util/Collections$SynchronizedSet.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$UnmodifiableList.class b/hello/stage1/java/util/Collections$UnmodifiableList.class deleted file mode 100644 index a97c2ffaca..0000000000 Binary files a/hello/stage1/java/util/Collections$UnmodifiableList.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$UnmodifiableMap.class b/hello/stage1/java/util/Collections$UnmodifiableMap.class deleted file mode 100644 index 91e15a202a..0000000000 Binary files a/hello/stage1/java/util/Collections$UnmodifiableMap.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$UnmodifiableSet.class b/hello/stage1/java/util/Collections$UnmodifiableSet.class deleted file mode 100644 index 8da38e617c..0000000000 Binary files a/hello/stage1/java/util/Collections$UnmodifiableSet.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections$ValueIterator.class b/hello/stage1/java/util/Collections$ValueIterator.class deleted file mode 100644 index deea7ccc0e..0000000000 Binary files a/hello/stage1/java/util/Collections$ValueIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/Collections.class b/hello/stage1/java/util/Collections.class deleted file mode 100644 index 687217a790..0000000000 Binary files a/hello/stage1/java/util/Collections.class and /dev/null differ diff --git a/hello/stage1/java/util/Comparator.class b/hello/stage1/java/util/Comparator.class deleted file mode 100644 index ae986770b1..0000000000 Binary files a/hello/stage1/java/util/Comparator.class and /dev/null differ diff --git a/hello/stage1/java/util/ConcurrentModificationException.class b/hello/stage1/java/util/ConcurrentModificationException.class deleted file mode 100644 index bf18e2f826..0000000000 Binary files a/hello/stage1/java/util/ConcurrentModificationException.class and /dev/null differ diff --git a/hello/stage1/java/util/Date.class b/hello/stage1/java/util/Date.class deleted file mode 100644 index 9a57242e88..0000000000 Binary files a/hello/stage1/java/util/Date.class and /dev/null differ diff --git a/hello/stage1/java/util/Enumeration.class b/hello/stage1/java/util/Enumeration.class deleted file mode 100644 index 256bb2cbf6..0000000000 Binary files a/hello/stage1/java/util/Enumeration.class and /dev/null differ diff --git a/hello/stage1/java/util/EventListener.class b/hello/stage1/java/util/EventListener.class deleted file mode 100644 index 7e4d9612e5..0000000000 Binary files a/hello/stage1/java/util/EventListener.class and /dev/null differ diff --git a/hello/stage1/java/util/EventObject.class b/hello/stage1/java/util/EventObject.class deleted file mode 100644 index 3000ea22ad..0000000000 Binary files a/hello/stage1/java/util/EventObject.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$1.class b/hello/stage1/java/util/HashMap$1.class deleted file mode 100644 index 65f4ff5ba5..0000000000 Binary files a/hello/stage1/java/util/HashMap$1.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$Cell.class b/hello/stage1/java/util/HashMap$Cell.class deleted file mode 100644 index bd63c5b1bd..0000000000 Binary files a/hello/stage1/java/util/HashMap$Cell.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$EntrySet.class b/hello/stage1/java/util/HashMap$EntrySet.class deleted file mode 100644 index 7614e6b153..0000000000 Binary files a/hello/stage1/java/util/HashMap$EntrySet.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$Helper.class b/hello/stage1/java/util/HashMap$Helper.class deleted file mode 100644 index 17fbe57611..0000000000 Binary files a/hello/stage1/java/util/HashMap$Helper.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$KeySet.class b/hello/stage1/java/util/HashMap$KeySet.class deleted file mode 100644 index 3c93e57983..0000000000 Binary files a/hello/stage1/java/util/HashMap$KeySet.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$MyCell.class b/hello/stage1/java/util/HashMap$MyCell.class deleted file mode 100644 index c1e6a3af44..0000000000 Binary files a/hello/stage1/java/util/HashMap$MyCell.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$MyHelper.class b/hello/stage1/java/util/HashMap$MyHelper.class deleted file mode 100644 index 996940affd..0000000000 Binary files a/hello/stage1/java/util/HashMap$MyHelper.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$MyIterator.class b/hello/stage1/java/util/HashMap$MyIterator.class deleted file mode 100644 index 11544fc348..0000000000 Binary files a/hello/stage1/java/util/HashMap$MyIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap$Values.class b/hello/stage1/java/util/HashMap$Values.class deleted file mode 100644 index e9845589ec..0000000000 Binary files a/hello/stage1/java/util/HashMap$Values.class and /dev/null differ diff --git a/hello/stage1/java/util/HashMap.class b/hello/stage1/java/util/HashMap.class deleted file mode 100644 index 7a48e58e00..0000000000 Binary files a/hello/stage1/java/util/HashMap.class and /dev/null differ diff --git a/hello/stage1/java/util/HashSet$MyIterator.class b/hello/stage1/java/util/HashSet$MyIterator.class deleted file mode 100644 index 8accfe9f27..0000000000 Binary files a/hello/stage1/java/util/HashSet$MyIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/HashSet.class b/hello/stage1/java/util/HashSet.class deleted file mode 100644 index 91937d6276..0000000000 Binary files a/hello/stage1/java/util/HashSet.class and /dev/null differ diff --git a/hello/stage1/java/util/Hashtable.class b/hello/stage1/java/util/Hashtable.class deleted file mode 100644 index d2f080eeff..0000000000 Binary files a/hello/stage1/java/util/Hashtable.class and /dev/null differ diff --git a/hello/stage1/java/util/IdentityHashMap$1.class b/hello/stage1/java/util/IdentityHashMap$1.class deleted file mode 100644 index dce92531bc..0000000000 Binary files a/hello/stage1/java/util/IdentityHashMap$1.class and /dev/null differ diff --git a/hello/stage1/java/util/IdentityHashMap$MyHelper.class b/hello/stage1/java/util/IdentityHashMap$MyHelper.class deleted file mode 100644 index b27b589ac9..0000000000 Binary files a/hello/stage1/java/util/IdentityHashMap$MyHelper.class and /dev/null differ diff --git a/hello/stage1/java/util/IdentityHashMap.class b/hello/stage1/java/util/IdentityHashMap.class deleted file mode 100644 index 71b45d38b5..0000000000 Binary files a/hello/stage1/java/util/IdentityHashMap.class and /dev/null differ diff --git a/hello/stage1/java/util/Iterator.class b/hello/stage1/java/util/Iterator.class deleted file mode 100644 index c560a1f0f1..0000000000 Binary files a/hello/stage1/java/util/Iterator.class and /dev/null differ diff --git a/hello/stage1/java/util/LinkedList$1.class b/hello/stage1/java/util/LinkedList$1.class deleted file mode 100644 index 9a84e46627..0000000000 Binary files a/hello/stage1/java/util/LinkedList$1.class and /dev/null differ diff --git a/hello/stage1/java/util/LinkedList$Cell.class b/hello/stage1/java/util/LinkedList$Cell.class deleted file mode 100644 index 3d38e80082..0000000000 Binary files a/hello/stage1/java/util/LinkedList$Cell.class and /dev/null differ diff --git a/hello/stage1/java/util/LinkedList$MyIterator.class b/hello/stage1/java/util/LinkedList$MyIterator.class deleted file mode 100644 index f4f253efc0..0000000000 Binary files a/hello/stage1/java/util/LinkedList$MyIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/LinkedList.class b/hello/stage1/java/util/LinkedList.class deleted file mode 100644 index e621a5964d..0000000000 Binary files a/hello/stage1/java/util/LinkedList.class and /dev/null differ diff --git a/hello/stage1/java/util/List.class b/hello/stage1/java/util/List.class deleted file mode 100644 index b4211d72df..0000000000 Binary files a/hello/stage1/java/util/List.class and /dev/null differ diff --git a/hello/stage1/java/util/ListIterator.class b/hello/stage1/java/util/ListIterator.class deleted file mode 100644 index 06a0553208..0000000000 Binary files a/hello/stage1/java/util/ListIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/Locale.class b/hello/stage1/java/util/Locale.class deleted file mode 100644 index 9965b4698f..0000000000 Binary files a/hello/stage1/java/util/Locale.class and /dev/null differ diff --git a/hello/stage1/java/util/Map$Entry.class b/hello/stage1/java/util/Map$Entry.class deleted file mode 100644 index b664a49279..0000000000 Binary files a/hello/stage1/java/util/Map$Entry.class and /dev/null differ diff --git a/hello/stage1/java/util/Map.class b/hello/stage1/java/util/Map.class deleted file mode 100644 index 7929c7cda0..0000000000 Binary files a/hello/stage1/java/util/Map.class and /dev/null differ diff --git a/hello/stage1/java/util/MissingResourceException.class b/hello/stage1/java/util/MissingResourceException.class deleted file mode 100644 index 8518cf321d..0000000000 Binary files a/hello/stage1/java/util/MissingResourceException.class and /dev/null differ diff --git a/hello/stage1/java/util/NoSuchElementException.class b/hello/stage1/java/util/NoSuchElementException.class deleted file mode 100644 index 0fbb29e3b4..0000000000 Binary files a/hello/stage1/java/util/NoSuchElementException.class and /dev/null differ diff --git a/hello/stage1/java/util/Properties$1.class b/hello/stage1/java/util/Properties$1.class deleted file mode 100644 index cb6b8b40c3..0000000000 Binary files a/hello/stage1/java/util/Properties$1.class and /dev/null differ diff --git a/hello/stage1/java/util/Properties$InputStreamParser.class b/hello/stage1/java/util/Properties$InputStreamParser.class deleted file mode 100644 index 1c3a524153..0000000000 Binary files a/hello/stage1/java/util/Properties$InputStreamParser.class and /dev/null differ diff --git a/hello/stage1/java/util/Properties$Parser.class b/hello/stage1/java/util/Properties$Parser.class deleted file mode 100644 index 7204e7a2e9..0000000000 Binary files a/hello/stage1/java/util/Properties$Parser.class and /dev/null differ diff --git a/hello/stage1/java/util/Properties$ReaderParser.class b/hello/stage1/java/util/Properties$ReaderParser.class deleted file mode 100644 index 0f1e6dc335..0000000000 Binary files a/hello/stage1/java/util/Properties$ReaderParser.class and /dev/null differ diff --git a/hello/stage1/java/util/Properties.class b/hello/stage1/java/util/Properties.class deleted file mode 100644 index e110356c70..0000000000 Binary files a/hello/stage1/java/util/Properties.class and /dev/null differ diff --git a/hello/stage1/java/util/PropertyResourceBundle.class b/hello/stage1/java/util/PropertyResourceBundle.class deleted file mode 100644 index c608d3ee73..0000000000 Binary files a/hello/stage1/java/util/PropertyResourceBundle.class and /dev/null differ diff --git a/hello/stage1/java/util/Queue.class b/hello/stage1/java/util/Queue.class deleted file mode 100644 index 455fd5d872..0000000000 Binary files a/hello/stage1/java/util/Queue.class and /dev/null differ diff --git a/hello/stage1/java/util/Random.class b/hello/stage1/java/util/Random.class deleted file mode 100644 index 3343230c13..0000000000 Binary files a/hello/stage1/java/util/Random.class and /dev/null differ diff --git a/hello/stage1/java/util/RandomAccess.class b/hello/stage1/java/util/RandomAccess.class deleted file mode 100644 index b8255485ef..0000000000 Binary files a/hello/stage1/java/util/RandomAccess.class and /dev/null differ diff --git a/hello/stage1/java/util/ResourceBundle.class b/hello/stage1/java/util/ResourceBundle.class deleted file mode 100644 index 633b0ceb77..0000000000 Binary files a/hello/stage1/java/util/ResourceBundle.class and /dev/null differ diff --git a/hello/stage1/java/util/Set.class b/hello/stage1/java/util/Set.class deleted file mode 100644 index d73e2e0f34..0000000000 Binary files a/hello/stage1/java/util/Set.class and /dev/null differ diff --git a/hello/stage1/java/util/SortedSet.class b/hello/stage1/java/util/SortedSet.class deleted file mode 100644 index f2cfebe315..0000000000 Binary files a/hello/stage1/java/util/SortedSet.class and /dev/null differ diff --git a/hello/stage1/java/util/Stack.class b/hello/stage1/java/util/Stack.class deleted file mode 100644 index ad83ec25b0..0000000000 Binary files a/hello/stage1/java/util/Stack.class and /dev/null differ diff --git a/hello/stage1/java/util/StringTokenizer.class b/hello/stage1/java/util/StringTokenizer.class deleted file mode 100644 index 76fec1f698..0000000000 Binary files a/hello/stage1/java/util/StringTokenizer.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeMap$1.class b/hello/stage1/java/util/TreeMap$1.class deleted file mode 100644 index 76d2ed42a4..0000000000 Binary files a/hello/stage1/java/util/TreeMap$1.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeMap$2.class b/hello/stage1/java/util/TreeMap$2.class deleted file mode 100644 index b04a335d50..0000000000 Binary files a/hello/stage1/java/util/TreeMap$2.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeMap$KeySet.class b/hello/stage1/java/util/TreeMap$KeySet.class deleted file mode 100644 index ade545313f..0000000000 Binary files a/hello/stage1/java/util/TreeMap$KeySet.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeMap$MyEntry.class b/hello/stage1/java/util/TreeMap$MyEntry.class deleted file mode 100644 index 85740c0727..0000000000 Binary files a/hello/stage1/java/util/TreeMap$MyEntry.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeMap$Values.class b/hello/stage1/java/util/TreeMap$Values.class deleted file mode 100644 index 03e84aceb1..0000000000 Binary files a/hello/stage1/java/util/TreeMap$Values.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeMap.class b/hello/stage1/java/util/TreeMap.class deleted file mode 100644 index d541e9b6ed..0000000000 Binary files a/hello/stage1/java/util/TreeMap.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeSet$1.class b/hello/stage1/java/util/TreeSet$1.class deleted file mode 100644 index d14035da8c..0000000000 Binary files a/hello/stage1/java/util/TreeSet$1.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeSet$2.class b/hello/stage1/java/util/TreeSet$2.class deleted file mode 100644 index ed3882fdec..0000000000 Binary files a/hello/stage1/java/util/TreeSet$2.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeSet$MyIterator.class b/hello/stage1/java/util/TreeSet$MyIterator.class deleted file mode 100644 index 4c42cd5d9e..0000000000 Binary files a/hello/stage1/java/util/TreeSet$MyIterator.class and /dev/null differ diff --git a/hello/stage1/java/util/TreeSet.class b/hello/stage1/java/util/TreeSet.class deleted file mode 100644 index f669864e79..0000000000 Binary files a/hello/stage1/java/util/TreeSet.class and /dev/null differ diff --git a/hello/stage1/java/util/UUID.class b/hello/stage1/java/util/UUID.class deleted file mode 100644 index 604b8d540c..0000000000 Binary files a/hello/stage1/java/util/UUID.class and /dev/null differ diff --git a/hello/stage1/java/util/Vector.class b/hello/stage1/java/util/Vector.class deleted file mode 100644 index bd7951f8e4..0000000000 Binary files a/hello/stage1/java/util/Vector.class and /dev/null differ diff --git a/hello/stage1/java/util/WeakHashMap$1.class b/hello/stage1/java/util/WeakHashMap$1.class deleted file mode 100644 index e8546e54a8..0000000000 Binary files a/hello/stage1/java/util/WeakHashMap$1.class and /dev/null differ diff --git a/hello/stage1/java/util/WeakHashMap$MyCell.class b/hello/stage1/java/util/WeakHashMap$MyCell.class deleted file mode 100644 index a9dc585dd4..0000000000 Binary files a/hello/stage1/java/util/WeakHashMap$MyCell.class and /dev/null differ diff --git a/hello/stage1/java/util/WeakHashMap$MyHelper.class b/hello/stage1/java/util/WeakHashMap$MyHelper.class deleted file mode 100644 index f734d36d06..0000000000 Binary files a/hello/stage1/java/util/WeakHashMap$MyHelper.class and /dev/null differ diff --git a/hello/stage1/java/util/WeakHashMap.class b/hello/stage1/java/util/WeakHashMap.class deleted file mode 100644 index 9bd2233f9a..0000000000 Binary files a/hello/stage1/java/util/WeakHashMap.class and /dev/null differ diff --git a/hello/stage1/java/util/concurrent/Callable.class b/hello/stage1/java/util/concurrent/Callable.class deleted file mode 100644 index 99700a8479..0000000000 Binary files a/hello/stage1/java/util/concurrent/Callable.class and /dev/null differ diff --git a/hello/stage1/java/util/concurrent/ConcurrentLinkedQueue$Node.class b/hello/stage1/java/util/concurrent/ConcurrentLinkedQueue$Node.class deleted file mode 100644 index 31a5006d9d..0000000000 Binary files a/hello/stage1/java/util/concurrent/ConcurrentLinkedQueue$Node.class and /dev/null differ diff --git a/hello/stage1/java/util/concurrent/ConcurrentLinkedQueue.class b/hello/stage1/java/util/concurrent/ConcurrentLinkedQueue.class deleted file mode 100644 index a3a70bda1b..0000000000 Binary files a/hello/stage1/java/util/concurrent/ConcurrentLinkedQueue.class and /dev/null differ diff --git a/hello/stage1/java/util/jar/JarEntry.class b/hello/stage1/java/util/jar/JarEntry.class deleted file mode 100644 index 406242e52d..0000000000 Binary files a/hello/stage1/java/util/jar/JarEntry.class and /dev/null differ diff --git a/hello/stage1/java/util/jar/JarFile$JarEntryFactory.class b/hello/stage1/java/util/jar/JarFile$JarEntryFactory.class deleted file mode 100644 index 6d9bab9775..0000000000 Binary files a/hello/stage1/java/util/jar/JarFile$JarEntryFactory.class and /dev/null differ diff --git a/hello/stage1/java/util/jar/JarFile$MyJarEntry.class b/hello/stage1/java/util/jar/JarFile$MyJarEntry.class deleted file mode 100644 index 3381d08655..0000000000 Binary files a/hello/stage1/java/util/jar/JarFile$MyJarEntry.class and /dev/null differ diff --git a/hello/stage1/java/util/jar/JarFile.class b/hello/stage1/java/util/jar/JarFile.class deleted file mode 100644 index 77369d06ad..0000000000 Binary files a/hello/stage1/java/util/jar/JarFile.class and /dev/null differ diff --git a/hello/stage1/java/util/logging/Handler.class b/hello/stage1/java/util/logging/Handler.class deleted file mode 100644 index ee6db93941..0000000000 Binary files a/hello/stage1/java/util/logging/Handler.class and /dev/null differ diff --git a/hello/stage1/java/util/logging/Level.class b/hello/stage1/java/util/logging/Level.class deleted file mode 100644 index c296aa2073..0000000000 Binary files a/hello/stage1/java/util/logging/Level.class and /dev/null differ diff --git a/hello/stage1/java/util/logging/LogRecord.class b/hello/stage1/java/util/logging/LogRecord.class deleted file mode 100644 index 0b32c8c336..0000000000 Binary files a/hello/stage1/java/util/logging/LogRecord.class and /dev/null differ diff --git a/hello/stage1/java/util/logging/Logger$DefaultHandler.class b/hello/stage1/java/util/logging/Logger$DefaultHandler.class deleted file mode 100644 index 8a0540c562..0000000000 Binary files a/hello/stage1/java/util/logging/Logger$DefaultHandler.class and /dev/null differ diff --git a/hello/stage1/java/util/logging/Logger.class b/hello/stage1/java/util/logging/Logger.class deleted file mode 100644 index ce74042c80..0000000000 Binary files a/hello/stage1/java/util/logging/Logger.class and /dev/null differ diff --git a/hello/stage1/java/util/regex/Matcher.class b/hello/stage1/java/util/regex/Matcher.class deleted file mode 100644 index f47b2380a9..0000000000 Binary files a/hello/stage1/java/util/regex/Matcher.class and /dev/null differ diff --git a/hello/stage1/java/util/regex/Pattern.class b/hello/stage1/java/util/regex/Pattern.class deleted file mode 100644 index ed8258206c..0000000000 Binary files a/hello/stage1/java/util/regex/Pattern.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/CRC32.class b/hello/stage1/java/util/zip/CRC32.class deleted file mode 100644 index 5f6756dd4f..0000000000 Binary files a/hello/stage1/java/util/zip/CRC32.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/DataFormatException.class b/hello/stage1/java/util/zip/DataFormatException.class deleted file mode 100644 index e9efc1cfd0..0000000000 Binary files a/hello/stage1/java/util/zip/DataFormatException.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/Deflater.class b/hello/stage1/java/util/zip/Deflater.class deleted file mode 100644 index a3d73bb05e..0000000000 Binary files a/hello/stage1/java/util/zip/Deflater.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/DeflaterOutputStream.class b/hello/stage1/java/util/zip/DeflaterOutputStream.class deleted file mode 100644 index 358f62b4dd..0000000000 Binary files a/hello/stage1/java/util/zip/DeflaterOutputStream.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/Inflater.class b/hello/stage1/java/util/zip/Inflater.class deleted file mode 100644 index 2c967e74a0..0000000000 Binary files a/hello/stage1/java/util/zip/Inflater.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/InflaterInputStream.class b/hello/stage1/java/util/zip/InflaterInputStream.class deleted file mode 100644 index 3a938a5f94..0000000000 Binary files a/hello/stage1/java/util/zip/InflaterInputStream.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipEntry.class b/hello/stage1/java/util/zip/ZipEntry.class deleted file mode 100644 index 9ee0117e87..0000000000 Binary files a/hello/stage1/java/util/zip/ZipEntry.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile$1.class b/hello/stage1/java/util/zip/ZipFile$1.class deleted file mode 100644 index 1d7a562668..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile$1.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile$EntryFactory.class b/hello/stage1/java/util/zip/ZipFile$EntryFactory.class deleted file mode 100644 index c6cc79e130..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile$EntryFactory.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile$MyEntry.class b/hello/stage1/java/util/zip/ZipFile$MyEntry.class deleted file mode 100644 index 719d5be2db..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile$MyEntry.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile$MyEnumeration.class b/hello/stage1/java/util/zip/ZipFile$MyEnumeration.class deleted file mode 100644 index f3fb35ef91..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile$MyEnumeration.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile$MyInputStream.class b/hello/stage1/java/util/zip/ZipFile$MyInputStream.class deleted file mode 100644 index 43ee789fc2..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile$MyInputStream.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile$MyZipEntry.class b/hello/stage1/java/util/zip/ZipFile$MyZipEntry.class deleted file mode 100644 index 66d3b5fd7b..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile$MyZipEntry.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile$Window.class b/hello/stage1/java/util/zip/ZipFile$Window.class deleted file mode 100644 index e73b7c0283..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile$Window.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile$ZipEntryFactory.class b/hello/stage1/java/util/zip/ZipFile$ZipEntryFactory.class deleted file mode 100644 index f2f84c6675..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile$ZipEntryFactory.class and /dev/null differ diff --git a/hello/stage1/java/util/zip/ZipFile.class b/hello/stage1/java/util/zip/ZipFile.class deleted file mode 100644 index 75ce9caee7..0000000000 Binary files a/hello/stage1/java/util/zip/ZipFile.class and /dev/null differ diff --git a/hello/stage1/sun/misc/Cleaner.class b/hello/stage1/sun/misc/Cleaner.class deleted file mode 100644 index afbb0c00e1..0000000000 Binary files a/hello/stage1/sun/misc/Cleaner.class and /dev/null differ diff --git a/hello/stage1/sun/misc/Unsafe.class b/hello/stage1/sun/misc/Unsafe.class deleted file mode 100644 index 36ad112abe..0000000000 Binary files a/hello/stage1/sun/misc/Unsafe.class and /dev/null differ diff --git a/hello/stage1/sun/reflect/ConstantPool.class b/hello/stage1/sun/reflect/ConstantPool.class deleted file mode 100644 index bfac6f9144..0000000000 Binary files a/hello/stage1/sun/reflect/ConstantPool.class and /dev/null differ diff --git a/hello/util.o b/hello/util.o deleted file mode 100644 index f1ba661b96..0000000000 Binary files a/hello/util.o and /dev/null differ diff --git a/hello/x86-asm.o b/hello/x86-asm.o deleted file mode 100644 index 4f82f63fd6..0000000000 Binary files a/hello/x86-asm.o and /dev/null differ diff --git a/hello/x86.o b/hello/x86.o deleted file mode 100644 index 15ce72609d..0000000000 Binary files a/hello/x86.o and /dev/null differ