formatting
[jalview.git] / src / jalview / appletgui / CutAndPasteTransfer.java
index ec31b0a..4cc0f44 100755 (executable)
@@ -151,7 +151,8 @@ public class CutAndPasteTransfer extends Panel implements ActionListener,
 
       } catch (Exception ex)
       {
-        // TODO: JAL-1102 - should have a warning message in dialog, not simply overwrite the broken input data with the exception
+        // TODO: JAL-1102 - should have a warning message in dialog, not simply
+        // overwrite the broken input data with the exception
         textarea.setText("Could not parse Newick file!\n" + ex);
         return;
       }
@@ -178,7 +179,9 @@ public class CutAndPasteTransfer extends Panel implements ActionListener,
           else
           {
             // file valid but didn't get added to alignment for some reason
-            alignFrame.statusBar.setText("Failed to add T-Coffee scores: "+(tcf.getWarningMessage()!=null ? tcf.getWarningMessage():""));
+            alignFrame.statusBar.setText("Failed to add T-Coffee scores: "
+                    + (tcf.getWarningMessage() != null ? tcf
+                            .getWarningMessage() : ""));
           }
         }
         else
@@ -206,7 +209,8 @@ public class CutAndPasteTransfer extends Panel implements ActionListener,
           if (!alignFrame.parseFeaturesFile(textarea.getText(),
                   jalview.io.AppletFormatAdapter.PASTE))
           {
-            alignFrame.statusBar.setText("Couldn't parse pasted text as a valid annotation, feature, GFF, or T-Coffee score file.");
+            alignFrame.statusBar
+                    .setText("Couldn't parse pasted text as a valid annotation, feature, GFF, or T-Coffee score file.");
           }
         }
       }