Skip to content

Commit

Permalink
[fixed] TouchFocus is public otherwise it won't work with GWT...
Browse files Browse the repository at this point in the history
git-svn-id: https://libgdx.googlecode.com/svn/trunk@4366 6c4fd544-2939-11df-bb46-9574ba5d0bfa
  • Loading branch information
badlogicgames committed Jul 4, 2012
1 parent ac31bf5 commit 2b35d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdx/src/com/badlogic/gdx/scenes/scene2d/Stage.java
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ public void dispose () {
if (ownsBatch) batch.dispose();
}

static final class TouchFocus {
public static final class TouchFocus {
static final Pool<TouchFocus> pool = new Pool<TouchFocus>(4, 16) {
protected TouchFocus newObject () {
return new TouchFocus();
Expand Down

0 comments on commit 2b35d13

Please sign in to comment.