Ejemplo n.º 1
0
 public BugInstance merge(BugInstance other) {
   if (other == null) {
     return this;
   }
   if (!getKey().equals(other.getKey())) {
     throw new AssertionError("Only bug instances with the same keys can be merged.");
   }
   return new BugInstance(
       bugPattern, bugPosition, fixInformation.merge(other.getFixInformation()));
 }