test/java/io/Serializable/enum/classObject/Test.java

Print this page

        

@@ -23,13 +23,10 @@
 
 /* @test
  * @bug 4838379
  * @summary Verify that serialization of Class objects for enum types works
  *          properly.
- *
- * @compile -source 1.5 Test.java
- * @run main Test
  */
 
 import java.io.*;
 
 enum Foo { foo, bar { int i = 0; }, baz { double d = 3.0; } }