Skip to content

Commit

Permalink
Merge pull request #67 from chmullig/master
Browse files Browse the repository at this point in the history
Made more MarkerManager's attributes protected, to enable more flexible sub-classing.
  • Loading branch information
tillnagel committed Aug 5, 2013
2 parents c4e9c9a + 550fd23 commit 5c0e3f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/de/fhpotsdam/unfolding/marker/MarkerManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
*/
public class MarkerManager<E extends Marker> {

UnfoldingMap map;
List<E> markers;
protected UnfoldingMap map;
protected List<E> markers;
protected boolean bEnableDrawing;

/**
Expand Down

0 comments on commit 5c0e3f3

Please sign in to comment.