mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 06:18:44 +00:00
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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user