server

Clone or download

removed logging stuff

Modified Files

--- 'a/src/main/java/com/StreamPi/Server/Window/Settings/ClientsSettings.java'
+++ b/src/main/java/com/StreamPi/Server/Window/Settings/ClientsSettings.java
@@ -145,9 +145,7 @@ public class ClientsSettings extends VBo
int actionsSize = Integer.parseInt(clientProfileVBox.getActionSize());
double startupWidth = Double.parseDouble(clientSettingsVBox.getStartupWindowWidth());
- logger.info("@#@#@#@## : "+rows+","+actionsSize+","+startupWidth+","+(rows*actionsSize)+","+startupWidth);
-
- if((rows*actionsSize) > (startupWidth- 25))
+ if((rows*actionsSize) > (startupWidth - 25))
{
errors2.append(" Rows out of bounds of screen size. \n");
}
@@ -161,12 +159,9 @@ public class ClientsSettings extends VBo
try {
int cols = Integer.parseInt(clientProfileVBox.getCols());
-
int actionsSize = Integer.parseInt(clientProfileVBox.getActionSize());
double startupHeight = Double.parseDouble(clientSettingsVBox.getStartupWindowHeight());
- logger.info("@#@sd#@#@## : "+cols+","+actionsSize+","+startupHeight+","+(cols*actionsSize)+","+startupHeight);
-
if((cols*actionsSize) > (startupHeight - 25))
{
errors2.append(" Cols out of bounds of screen size. \n");