Example #1
0
 /**
  * @param aSection
  * @return
  * @throws IOException
  */
 private Symbol[] loadSymbolsBySection(final Section aSection) throws IOException {
   if (aSection == null) {
     return new Symbol[0];
   }
   return aSection.loadSymbols(this.ehdr, this.efile);
 }