cleaned up formatting:

- removed trailing whitespace
- changed all leading whitespace to tabs
- removed IDE created author comments
This commit is contained in:
Evan Debenham
2015-06-12 16:22:26 -04:00
parent baa83b7e43
commit cebdff0221
335 changed files with 8555 additions and 8714 deletions
@@ -84,7 +84,7 @@ public class ScrollPane extends Component {
return content;
}
public void onClick( float x, float y ) {
public void onClick( float x, float y ) {
}
public class TouchController extends TouchArea {
@@ -114,7 +114,7 @@ public class ScrollPane extends Component {
private PointF lastPos = new PointF();
@Override
protected void onDrag( Touch t ) {
protected void onDrag( Touch t ) {
if (dragging) {
Camera c = content.camera;
@@ -134,7 +134,7 @@ public class ScrollPane extends Component {
}
lastPos.set( t.current );
lastPos.set( t.current );
} else if (PointF.distance( t.current, t.start ) > dragThreshold) {
@@ -142,6 +142,6 @@ public class ScrollPane extends Component {
lastPos.set( t.current );
}
}
}
}
}