Skip to content

Commit

Permalink
Make dependence on bytecode constants explicit (avoid implements to a…
Browse files Browse the repository at this point in the history
…cquire static final constants anti-pattern).
  • Loading branch information
Ian Rogers committed May 28, 2009
1 parent c4e305e commit 5ea86f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import org.jikesrvm.ArchitectureSpecific.BaselineCompilerImpl;
import org.jikesrvm.VM;
import org.jikesrvm.classloader.BytecodeConstants;
import static org.jikesrvm.classloader.BytecodeConstants.*;
import org.jikesrvm.classloader.BytecodeStream;
import org.jikesrvm.classloader.ClassLoaderConstants;
import org.jikesrvm.classloader.ExceptionHandlerMap;
Expand All @@ -33,7 +33,7 @@
* java operand stack or a C-like stack?; when processing java bytecodes it
* seemed best to use "stack" for java operand stack.)
*/
final class BuildReferenceMaps implements BytecodeConstants, ClassLoaderConstants, BBConstants {
final class BuildReferenceMaps implements ClassLoaderConstants, BBConstants {

/**
* The entry in the reference map contains a value that is not a reference.
Expand Down

0 comments on commit 5ea86f8

Please sign in to comment.