[BAEL-3090] Removed Coordinates

This commit is contained in:
dupirefr 2019-07-27 11:34:42 +02:00
parent 83d8443fef
commit c3cc9a8336

View File

@ -1,12 +0,0 @@
package com.baeldung.memento;
public class Coordinates {
private int x;
private int y;
public Coordinates(int x, int y) {
this.x = x;
this.y = y;
}
}