| Chunk |
|---|
| Conflicting content |
|---|
private final static Pattern PATTERN_TRACKABLE_SpottedUser = Pattern.compile("\\W*Current GOAL[^<]*[^<]*[^<]* [^<]*(.*?) [^<]*");
private final static Pattern PATTERN_TRACKABLE_DETAILSIMAGE = Pattern.compile("([^<]* ]*>(.*) [^<]*(.*?) [^<]*\\W*About This Item[^<]*[^<]*([^<]* ([^<]* ]*>(.*) [^<]*");
>>>>>>> 6887cefdf0964d58168253f8ffab9af7c9d79248
private final static Pattern PATTERN_TRACKABLE_Icon = Pattern.compile(" ]*\\W*Tracking History \\(([0-9.,]+(km|mi))[^\\)]*\\)", Pattern.CASE_INSENSITIVE); |
| Solution content |
|---|
private final static Pattern PATTERN_TRACKABLE_SpottedUser = Pattern.compile("\\W*Current GOAL[^<]*[^<]*[^<]* [^<]*(.*?) [^<]*");
private final static Pattern PATTERN_TRACKABLE_DETAILSIMAGE = Pattern.compile("([^<]* ]*>(.*) [^<]*]*\\W*Tracking History \\(([0-9.,]+(km|mi))[^\\)]*\\)", Pattern.CASE_INSENSITIVE); |
| File |
|---|
| cgBase.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Attribute |
| Method invocation |
| Chunk |
|---|
| Conflicting content |
|---|
trackable.setImage(image);
}
if (details != null) {
<<<<<<< HEAD
trackable.setDetails(details);
=======
trackable.details = details.equals("No additional details available.") ? null : details;
>>>>>>> 6887cefdf0964d58168253f8ffab9af7c9d79248
}
}
} catch (Exception e) { |
| Solution content |
|---|
trackable.setImage(image);
}
if (details != null && !details.equals("No additional details available.")) {
trackable.setDetails(details);
}
}
} catch (Exception e) { |
| File |
|---|
| cgBase.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Method invocation |
| Variable |