Changeset 6616


Ignore:
Timestamp:
09/30/15 10:00:37 (9 years ago)
Author:
davor.ostojic@oeaw.ac.at
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.3-oeaw/vlo-importer/src/main/java/eu/clarin/cmdi/vlo/importer/PostProcessorsWithVocabularyMap.java

    r6614 r6616  
    6161                                sb.append(String.format("%02X ", b));
    6262                           
    63                          LOG.info("Key <{} bytes {}> will be mapped to <{}>", e.getKey(), sb.toString(), e.getValue());
     63                         LOG.info("Key <{} {}> will be mapped to <{}>", e.getKey(), sb.toString(), e.getValue());
    6464                 }
     65                 
     66                 String s = "TÃŒbingen Curated Resource";
     67                 byte bytes[] = s.getBytes();
     68                 StringBuilder sb = new StringBuilder();
     69             for (byte b : bytes)
     70                 sb.append(String.format("%02X ", b));
     71             LOG.info("{} {}", s, sb.toString());
     72                   
     73                 
    6574         }
    6675         
Note: See TracChangeset for help on using the changeset viewer.