Skip to content

Commit

Permalink
Simplified currentCursor assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Sowinski committed Oct 29, 2013
1 parent a962423 commit f5a1a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AppKit/CPCursor.j
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ var currentCursor = nil,
- (void)push
{
cursorStack.push(self);
currentCursor = cursorStack[cursorStack.length - 1];
currentCursor = self;
}

- (void)set
Expand Down

0 comments on commit f5a1a67

Please sign in to comment.