Fix compile error caused by bugfix for #215583.
authorFlorian Vogler <fvogler@netbeans.org>
Tue, 24 Nov 2015 01:02:29 +0100
changeset 1579e5512c829073
parent 1578 f93ef9fcf584
child 1580 95d5e2181abc
Fix compile error caused by bugfix for #215583.
xml.schema.ui.basic/src/org/netbeans/modules/xml/schema/ui/nodes/categorized/customizer/ComplexTypeCustomizer.java
     1.1 --- a/xml.schema.ui.basic/src/org/netbeans/modules/xml/schema/ui/nodes/categorized/customizer/ComplexTypeCustomizer.java	Tue Oct 30 16:47:50 2012 +0100
     1.2 +++ b/xml.schema.ui.basic/src/org/netbeans/modules/xml/schema/ui/nodes/categorized/customizer/ComplexTypeCustomizer.java	Tue Nov 24 01:02:29 2015 +0100
     1.3 @@ -117,6 +117,11 @@
     1.4          return ref == null ? null : ref.get();
     1.5      }
     1.6      
     1.7 +    static GlobalType getBase(ComplexContentRestriction ext) {
     1.8 +        Reference<? extends GlobalType> ref = ext.getBase();
     1.9 +        return ref == null ? null : ref.get();
    1.10 +    }
    1.11 +    
    1.12      /**
    1.13       * non UI component (model) initialization and access methods
    1.14       */