Deleted the print exception stack statement to make terminal more tidy.

- the exception is aim to happen, so no need to print it out.

#story[377]
This commit is contained in:
Haoming Yin
2017-03-28 19:38:57 +13:00
parent 2c125d4ce0
commit 1497858cc0
@@ -50,7 +50,6 @@ public class ConfigParser extends FileParser {
val = Double.valueOf(element.getTextContent()); val = Double.valueOf(element.getTextContent());
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
} finally { } finally {
return val; return val;
} }
@@ -72,7 +71,6 @@ public class ConfigParser extends FileParser {
string = element.getTextContent(); string = element.getTextContent();
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
} finally { } finally {
return string; return string;
} }