Skip to content

Commit

Permalink
tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
paxdei committed Feb 6, 2016
1 parent d18e6f4 commit 0f3e657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AceGWT/src/edu/ycp/cs/dh/acegwt/client/ace/AceEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ public Map<Integer, AceRange> getMarkers() {
* Remove all the displayed markers.
*/
public void removeAllMarkers() {
Integer[] ids = this.markers.keySet().toArray(new Integer[this.markers.size()]);
Integer[] ids = this.markers.keySet().toArray(new Integer[this.markers.size()]);
for (Integer id : ids) {
removeMarker(id);
}
Expand Down

0 comments on commit 0f3e657

Please sign in to comment.