Skip to content

Commit 79c08fd

Browse files
author
Scott Kennedy
committed
Some tabs were replaced with spaces... oops
1 parent dfbf461 commit 79c08fd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/org/andengine/engine/camera/Camera.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ public void onApplySceneMatrix(final GLState pGLState) {
293293

294294
final float rotation = this.mRotation;
295295
if(rotation != 0) {
296-
Camera.applyRotation(pGLState, this.getCenterX(), this.getCenterY(), rotation);
296+
Camera.applyRotation(pGLState, this.getCenterX(), this.getCenterY(), rotation);
297297
}
298298
}
299299

@@ -305,7 +305,7 @@ public void onApplySceneBackgroundMatrix(final GLState pGLState) {
305305

306306
final float rotation = this.mRotation;
307307
if(rotation != 0) {
308-
Camera.applyRotation(pGLState, widthRaw * 0.5f, heightRaw * 0.5f, rotation);
308+
Camera.applyRotation(pGLState, widthRaw * 0.5f, heightRaw * 0.5f, rotation);
309309
}
310310
}
311311

src/org/andengine/opengl/texture/atlas/buildable/IBuildableTextureAtlas.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ public interface IBuildableTextureAtlas<S extends ITextureAtlasSource, T extends
2727
* @deprecated Use {@link BuildableTextureAtlas#addTextureAtlasSource(ITextureAtlasSource)} instead.
2828
*/
2929
@Override
30-
@Deprecated
30+
@Deprecated
3131
public void addTextureAtlasSource(final S pTextureAtlasSource, final int pTextureX, final int pTextureY);
3232

3333
/**
3434
* Most likely this is not the method you'd want to be using, as the {@link ITextureAtlasSource} won't get built through this {@link BuildableTextureAtlas}.
3535
* @deprecated Use {@link BuildableTextureAtlas#addTextureAtlasSource(ITextureAtlasSource)} instead.
3636
*/
3737
@Override
38-
@Deprecated
38+
@Deprecated
3939
public void addTextureAtlasSource(final S pTextureAtlasSource, final int pTextureX, final int pTextureY, final int pTextureAtlasSourcePadding);
4040

4141
/**

src/org/andengine/util/modifier/BaseDoubleValueSpanModifier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ protected BaseDoubleValueSpanModifier(final BaseDoubleValueSpanModifier<T> pBase
5858
// ===========================================================
5959

6060
@Override
61-
@Deprecated
61+
@Deprecated
6262
public float getFromValue() {
6363
return super.getFromValue();
6464
}
6565

6666
@Override
67-
@Deprecated
67+
@Deprecated
6868
public float getToValue() {
6969
return super.getToValue();
7070
}

0 commit comments

Comments
 (0)