Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@
* objects. Subclasses specialize this implementation appropriate to the
* current JVM's capabilities and the mechanism for laying out variables.
*/
public class VariableAccessor {
public abstract class VariableAccessor {
/** the name of the variable */
protected final String name;
/** the index allocated for it in the variable table */
@@ -147,6 +147,6 @@ public String toString() {
}

/** a dummy accessor that will always return null */
public static final VariableAccessor DUMMY_ACCESSOR = new VariableAccessor(null, null, -1, -1);
public static final VariableAccessor DUMMY_ACCESSOR = new VariableAccessor(null, null, -1, -1) {};

}

0 comments on commit feb11a1

Please sign in to comment.