Skip to content

Commit

Permalink
GH-173 merge conflicts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Corless committed May 8, 2023
1 parent 4b8a511 commit 6631532
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,18 @@
import java.awt.*;
import java.awt.geom.AffineTransform;
import java.awt.geom.Rectangle2D;
import java.util.HashMap;

public class MarkupGlueAnnotation extends Annotation {

protected MarkupAnnotation markupAnnotation;
protected PopupAnnotation popupAnnotation;

public MarkupGlueAnnotation(Library l, HashMap h) {
public MarkupGlueAnnotation(Library l, DictionaryEntries h) {
super(l, h);
}

public MarkupGlueAnnotation(Library l, MarkupAnnotation markupAnnotation, PopupAnnotation popupAnnotation) {
super(l, new HashMap());
super(l, new DictionaryEntries());
this.markupAnnotation = markupAnnotation;
this.popupAnnotation = popupAnnotation;
}
Expand Down

0 comments on commit 6631532

Please sign in to comment.