jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/Package.java
changeset 32649 2ee9017c7597
parent 29986 97167d851fc4
child 40792 cfcc66f92aec
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
   988             return thisClass.stringValue();
   988             return thisClass.stringValue();
   989         }
   989         }
   990     }
   990     }
   991 
   991 
   992     // Helper for building InnerClasses attributes.
   992     // Helper for building InnerClasses attributes.
   993     static private
   993     private static
   994     void visitInnerClassRefs(Collection<InnerClass> innerClasses, int mode, Collection<Entry> refs) {
   994     void visitInnerClassRefs(Collection<InnerClass> innerClasses, int mode, Collection<Entry> refs) {
   995         if (innerClasses == null) {
   995         if (innerClasses == null) {
   996             return;  // no attribute; nothing to do
   996             return;  // no attribute; nothing to do
   997         }
   997         }
   998         if (mode == VRM_CLASSIC) {
   998         if (mode == VRM_CLASSIC) {