X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FFieldGen.java;h=e2371d02a3e3e985bf9e8c776566774c0c9ee28c;hp=39e91c0b04cc9152180f86894ec2283087fba5fb;hb=0087af3d283954bbeeaaa857914ce9e06c39fcc7;hpb=422c330c1494005be09783d0ba406b9f5f860475 diff --git a/src/org/ibex/classgen/FieldGen.java b/src/org/ibex/classgen/FieldGen.java index 39e91c0..e2371d0 100644 --- a/src/org/ibex/classgen/FieldGen.java +++ b/src/org/ibex/classgen/FieldGen.java @@ -7,7 +7,7 @@ public class FieldGen implements CGConst { private final String name; private final Type type; private final int flags; - private final AttrGen attrs; + private final ClassGen.AttrGen attrs; FieldGen(ClassGen owner, String name,Type type, int flags) { if((flags & ~(ACC_PUBLIC|ACC_PRIVATE|ACC_PROTECTED|ACC_VOLATILE|ACC_TRANSIENT|ACC_STATIC|ACC_FINAL)) != 0) @@ -16,7 +16,7 @@ public class FieldGen implements CGConst { this.name = name; this.type = type; this.flags = flags; - this.attrs = new AttrGen(cp); + this.attrs = new ClassGen.AttrGen(cp); cp.addUtf8(name); cp.addUtf8(type.getDescriptor());