comparison graal/com.oracle.max.asmdis/src/com/sun/max/asm/gen/NoSuchAssemblerMethodError.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
31 * {@linkplain AssemblerGenerator#generateRedundantInstructionsOption ignored} when the assembler was generated. 31 * {@linkplain AssemblerGenerator#generateRedundantInstructionsOption ignored} when the assembler was generated.
32 * A disassembler always works with the complete set of redundant templates. 32 * A disassembler always works with the complete set of redundant templates.
33 */ 33 */
34 public class NoSuchAssemblerMethodError extends NoSuchMethodError { 34 public class NoSuchAssemblerMethodError extends NoSuchMethodError {
35 35
36 /**
37 *
38 */
39 private static final long serialVersionUID = 6071040691387949757L;
36 public final Template template; 40 public final Template template;
37 41
38 public NoSuchAssemblerMethodError(String message, Template template) { 42 public NoSuchAssemblerMethodError(String message, Template template) {
39 super(message); 43 super(message);
40 this.template = template; 44 this.template = template;