Skip to content

Commit

Permalink
PDFBOX-2530: remove public modifier of non public class
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1687591 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Jun 25, 2015
1 parent 0ee713f commit 36a5e5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,14 +290,14 @@ private class OverlayIcon extends ImageIcon
private final ImageIcon base;
private final List<ImageIcon> overlays;

public OverlayIcon(ImageIcon base)
OverlayIcon(ImageIcon base)
{
super(base.getImage());
this.base = base;
this.overlays = new ArrayList<ImageIcon>();
}

public void add(ImageIcon overlay)
void add(ImageIcon overlay)
{
overlays.add(overlay);
}
Expand Down

0 comments on commit 36a5e5a

Please sign in to comment.