blob: 51cfb57a1441ad0c368c4f0b3fa40a3faa3cc96e (
plain)
1
2
3
4
5
6
7
|
rebuilding code.jar is done with:
javac *.java
jar -cvMf code.jar test
Basically you need to ensure the classes have no local variable tables - that is the default behaviour for javac
|