~ubuntu-branches/ubuntu/vivid/elki/vivid

« back to all changes in this revision

Viewing changes to src/de/lmu/ifi/dbs/elki/utilities/datastructures/hierarchy/HierarchyHashmapList.java

  • Committer: Package Import Robot
  • Author(s): Erich Schubert
  • Date: 2012-12-14 20:45:15 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20121214204515-4m0d0er9ivtu5w9d
Tags: 0.5.5-1
New upstream release: 0.5.5 interim release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
      if(!pchi.contains(child)) {
72
72
        pchi.add(child);
73
73
      } else {
74
 
        LoggingUtil.warning("Result added twice: "+parent+" -> "+child);
 
74
        LoggingUtil.warning("Result added twice: "+parent+" -> "+child, new Throwable());
75
75
      }
76
76
    }
77
77
    // Add child to parent
84
84
      if(!cpar.contains(parent)) {
85
85
        cpar.add(parent);
86
86
      } else {
87
 
        LoggingUtil.warning("Result added twice: "+parent+" <- "+child);
 
87
        LoggingUtil.warning("Result added twice: "+parent+" <- "+child, new Throwable());
88
88
      }
89
89
    }
90
90
  }