Ignore:
Timestamp:
04/11/11 14:43:03 (13 years ago)
Author:
sherbold
Message:
  • major debugging of PPM and Trie. Results are now correct, but both classes need major refactorings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java

    r2 r5  
    2626 
    2727 
    28         private String idInfo = null; 
     28        private String idInfo = ""; 
    2929         
    3030        public Event(String type) { 
     
    5959                if (targetShort!=null) { 
    6060                        shortId = targetShort+"."+getType(); 
    61                         if (idInfo!=null) { 
     61                        if (idInfo!="") { 
    6262                                shortId += "."+idInfo; 
    6363                        } 
     
    6868        public String getStandardId() { 
    6969                String id = target + "." + getType(); 
    70                 if ( idInfo!=null ) { 
     70                if ( idInfo!="" ) { 
    7171                        id += "." + idInfo; 
    7272                } 
Note: See TracChangeset for help on using the changeset viewer.