Removed print statements.

#chore
This commit is contained in:
Calum
2017-09-14 14:37:22 +12:00
parent eb188495ce
commit e24203904b
4 changed files with 5 additions and 12 deletions
@@ -245,11 +245,6 @@ public class GameView3D {
private void createStartLineArrows () {
for (Mark mark : course.get(0).getMarks()) {
System.out.println(
"GeoUtility.getBearing(mark, course.get(1).getMidPoint()) = " + GeoUtility
.getBearing(mark, course.get(1).getMidPoint()));
System.out.println("mark = " + mark);
System.out.println("course.get(1) = " + course.get(1));
markerObjects.get(mark).addArrows(
mark.getRoundingSide() == RoundingSide.STARBOARD ? MarkArrowFactory.RoundingSide.STARBOARD : MarkArrowFactory.RoundingSide.PORT,
0d, //90
@@ -220,9 +220,6 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel
.bind(ViewManager.getInstance().getStage().widthProperty());
((SubScene) gameView.getAssets()).heightProperty()
.bind(ViewManager.getInstance().getStage().heightProperty());
System.out.println(((SubScene) gameView.getAssets()).getHeight());
System.out.println(((SubScene) gameView.getAssets()).getWidth());
});
gameView.setBoats(new ArrayList<>(participants.values()));
gameView.updateBorder(raceData.getCourseLimit());
@@ -69,7 +69,6 @@ public class ServerCell implements Initializable {
* Attempts to connect to the chosen server using the button on the serverCell.
*/
private void joinServer() {
System.out.println("Connecting to " + serverName.getText());
ViewManager.getInstance().getGameClient().runAsClient(hostName, portNumber);
}