diff --git a/README.md b/README.md index f45c6d9..69a6cc4 100644 --- a/README.md +++ b/README.md @@ -175,19 +175,6 @@ All deliverables are located in the [`deliverables/`](deliverables/) folder and Contains code-coverage reports. The folder includes screenshot summaries (`.JPG`) and the full HTML report under `htmReport/`. Open [`Coverage/htmReport/index.html`](deliverables/Coverage/htmReport/index.html) in a browser for the interactive view. -### JAR -[`deliverables/JAR/`](deliverables/JAR/) - -Executable fat-JARs for all three components of the application: - -| File | Role | -|---|---| -| `Server.jar` | Game server | -| `ClientTUI.jar` | Text-based client | -| `ClientGUI.jar` | JavaFX graphical client | - -See the **Launch** sections above for usage instructions. - ### Javadoc [`deliverables/JAVADOC/`](deliverables/JAVADOC/index.html) diff --git a/deliverables/JAR/ClientGUI.jar b/deliverables/JAR/ClientGUI.jar deleted file mode 100644 index e7d2f98..0000000 Binary files a/deliverables/JAR/ClientGUI.jar and /dev/null differ diff --git a/deliverables/JAR/ClientTUI.jar b/deliverables/JAR/ClientTUI.jar deleted file mode 100644 index 0c68fce..0000000 Binary files a/deliverables/JAR/ClientTUI.jar and /dev/null differ diff --git a/deliverables/JAR/Server.jar b/deliverables/JAR/Server.jar deleted file mode 100644 index df1a473..0000000 Binary files a/deliverables/JAR/Server.jar and /dev/null differ diff --git a/src/main/java/it/polimi/ingsw/gc14/Network/RMI/Client/RMIClient.java b/src/main/java/it/polimi/ingsw/gc14/Network/RMI/Client/RMIClient.java index 30d56e8..1f1c19a 100644 --- a/src/main/java/it/polimi/ingsw/gc14/Network/RMI/Client/RMIClient.java +++ b/src/main/java/it/polimi/ingsw/gc14/Network/RMI/Client/RMIClient.java @@ -77,7 +77,6 @@ public class RMIClient implements IClient { } return status; } catch (Exception e) { - e.printStackTrace(); return ErrorType.SERVER_UNREACHABLE; } } diff --git a/src/main/java/it/polimi/ingsw/gc14/Network/TCP/Client/TCPClient.java b/src/main/java/it/polimi/ingsw/gc14/Network/TCP/Client/TCPClient.java index 2d6b61e..4acaa10 100644 --- a/src/main/java/it/polimi/ingsw/gc14/Network/TCP/Client/TCPClient.java +++ b/src/main/java/it/polimi/ingsw/gc14/Network/TCP/Client/TCPClient.java @@ -109,7 +109,6 @@ public class TCPClient implements IClient { return null; } catch (IOException e) { - e.printStackTrace(); return ErrorType.SERVER_UNREACHABLE; } }