Ejemplo n.º 1
0
 @SuppressWarnings("null")
 @Override
 public int compareTo(Path o) {
   if (this.nodePath != null && o.getNodePath() != null) {
     return Integer.compare(this.nodePath.size(), o.getNodePath().size());
   }
   return (Integer) null;
 }