[brailleblaster] [brailleblaster.newdesign] push by brandon....@xxxxxxxxx - Added missing semi-colon on 2013-07-16 19:42 GMT

  • From: brailleblaster@xxxxxxxxxxxxxx
  • To: brailleblaster@xxxxxxxxxxxxx
  • Date: Tue, 16 Jul 2013 19:42:16 +0000

Revision: eb2dfb1f7f45
Branch:   default
Author:   Brandon Roller <brandon.r.roller@xxxxxxxxx>
Date:     Tue Jul 16 12:40:18 2013
Log:      Added missing semi-colon
http://code.google.com/p/brailleblaster/source/detail?r=eb2dfb1f7f45&repo=newdesign

Modified:
 /src/main/org/brailleblaster/wordprocessor/BBDocument.java
 /src/main/org/brailleblaster/wordprocessor/Normalizer.java

=======================================
--- /src/main/org/brailleblaster/wordprocessor/BBDocument.java Tue Jul 16 11:46:19 2013 +++ /src/main/org/brailleblaster/wordprocessor/BBDocument.java Tue Jul 16 12:40:18 2013
@@ -142,7 +142,7 @@
                }
                catch(ConnectException e){
new Notify("Brailleblaster failed to access necessary materials from online. Please check your internet connection and try again.");
-                       //e.printStackTrace();
+                       e.printStackTrace();
                        printErrors(e);
                        return false;
                }
@@ -150,17 +150,17 @@
new Notify("Brailleblaster failed to access necessary materials from online. Please check your internet connection and try again.");
                        e.printStackTrace();
                        printErrors(e);
-                       return false
+                       return false;
                }
                catch (ParsingException e) {
                        new Notify("Problem processing " + fileName + " See stack 
trace.");
-                       //e.printStackTrace();
+                       e.printStackTrace();
                        printErrors(e);
                        return false;
                }
                catch (IOException e) {
new Notify ("IO error occurred while parsing " + fileName + " See stack trace.");
-                       //e.printStackTrace();
+                       e.printStackTrace();
                        printErrors(e);
                        return false;
                }
=======================================
--- /src/main/org/brailleblaster/wordprocessor/Normalizer.java Tue Jul 16 11:46:19 2013 +++ /src/main/org/brailleblaster/wordprocessor/Normalizer.java Tue Jul 16 12:40:18 2013
@@ -48,27 +48,27 @@
                }
                catch(ConnectException e){
new Notify("Brailleblaster failed to access necessary materials from online. Please check your internet connection and try again.");
-               //      e.printStackTrace();
+                       e.printStackTrace();
                        printErrors(e);
                }
                catch(UnknownHostException e){
new Notify("Brailleblaster failed to access necessary materials from online. Please check your internet connection and try again.");
-               //      e.printStackTrace();
+                       e.printStackTrace();
                        printErrors(e);
                }
                catch (ParserConfigurationException e) {
new Notify("An error occurred while reading the document. Please check whehther the document contains vaild XML.");
-               //      e.printStackTrace();
+                       e.printStackTrace();
                        printErrors(e);
                }
                catch (SAXException e) {
new Notify("An error occurred while reading the document. Please check whehther the document contains vaild XML.");
-               //      e.printStackTrace();
+                       e.printStackTrace();
                        printErrors(e);
                }
                catch (IOException e) {
                        new Notify("An error occurred while reading the 
document.");
-               //      e.printStackTrace();
+                       e.printStackTrace();
                        printErrors(e);
                }
        }

Other related posts:

  • » [brailleblaster] [brailleblaster.newdesign] push by brandon....@xxxxxxxxx - Added missing semi-colon on 2013-07-16 19:42 GMT - brailleblaster