< prev index next >

src/share/vm/classfile/symbolTable.cpp

Print this page

@@ -79,14 +79,12 @@
   }
 }
 
 // Call function for all symbols in the symbol table.
 void SymbolTable::symbols_do(SymbolClosure *cl) {
-  if (!DumpSharedSpaces) {
     // all symbols from shared table
     _shared_table.symbols_do(cl);
-  }
 
   // all symbols from the dynamic table
   const int n = the_table()->table_size();
   for (int i = 0; i < n; i++) {
     for (HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i);
< prev index next >