Skip to content

Commit fd580d3

Browse files
author
Valentin Vetter
committed
format(sdk): reformat
1 parent 7c5f70e commit fd580d3

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

engine/modules/entities/src/main/java/com/codingame/gameengine/module/entities/Serializer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
import java.text.DecimalFormat;
44
import java.text.DecimalFormatSymbols;
5+
import java.util.HashMap;
6+
import java.util.List;
57
import java.util.Map;
68
import java.util.Map.Entry;
79
import java.util.Optional;
810
import java.util.Set;
9-
import java.util.HashMap;
10-
import java.util.List;
1111
import java.util.stream.Collectors;
1212
import java.util.stream.Stream;
1313

engine/modules/entities/src/main/java/com/codingame/gameengine/module/entities/TextureBasedEntity.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@
33
/**
44
* Any PIXI Entity based on a texture shares the properties found in this <code>TextureBasedEntity</code>.
55
*
6-
* @param <T> a subclass inheriting Entity, used in order to return <b>this</b> as a T instead of a <code>TextureBasedEntity</code>.
6+
* @param <T>
7+
* a subclass inheriting Entity, used in order to return <b>this</b> as a T instead of a <code>TextureBasedEntity</code>.
78
*/
89
public abstract class TextureBasedEntity<T extends BlendableEntity<?>> extends BlendableEntity<T> {
910

10-
1111
private double anchorX = 0, anchorY = 0;
1212
private int tint = 0xFFFFFF;
1313

1414
TextureBasedEntity() {
1515
super();
1616
}
1717

18-
19-
2018
/**
2119
* Sets both the X and Y anchors of this <code>TextureBasedEntity</code> as a percentage of its width and height.
2220
* <p>

0 commit comments

Comments
 (0)