fix: change last comments to new format

This commit is contained in:
punchready 2021-04-30 23:19:58 +02:00
parent fc1382b343
commit e062de635d
2 changed files with 2 additions and 4 deletions

View File

@ -3,8 +3,7 @@ package uulm.teamname.marvelous.gamelibrary;
import java.io.Serializable; import java.io.Serializable;
import java.util.Objects; import java.util.Objects;
/** Represents a 2d vector of integers. /** Represents a 2d vector of integers. */
*/
public class IntVector2 implements Serializable { public class IntVector2 implements Serializable {
private int x; private int x;
private int y; private int y;

View File

@ -1,7 +1,6 @@
package uulm.teamname.marvelous.gamelibrary; package uulm.teamname.marvelous.gamelibrary;
/** Represents a pair of two objects. /** Represents a pair of two objects. */
*/
public class Tuple<X, Y> { public class Tuple<X, Y> {
public final X item1; public final X item1;
public final Y item2; public final Y item2;