4111861: static final field contents are not displayed

Reviewed-by: ksrini
This commit is contained in:
Jonathan Gibbons 2008-08-04 15:09:02 -07:00
parent 7c754d9268
commit 44444bd9c0
6 changed files with 210 additions and 0 deletions

View file

@ -229,6 +229,12 @@ public class JavapTask implements DisassemblerTool.DisassemblerTask {
void process(JavapTask task, String opt, String arg) {
task.options.ignoreSymbolFile = true;
}
},
new Option(false, "-constants") {
void process(JavapTask task, String opt, String arg) {
task.options.showConstants = true;
}
}
};