fixes unidentified Java problem
authorhansonr <hansonr@STO24954W.ad.stolaf.edu>
Wed, 30 Jan 2019 14:56:52 +0000 (08:56 -0600)
committerhansonr <hansonr@STO24954W.ad.stolaf.edu>
Wed, 30 Jan 2019 14:56:52 +0000 (08:56 -0600)
when pasted text has white space trailing or preceding, error was
indicated that "" could not be loaded.

src/jalview/gui/SequenceFetcher.java

index 1e6d678..f06bd97 100755 (executable)
@@ -417,13 +417,15 @@ public class SequenceFetcher extends JPanel implements Runnable
     /*
      * tidy inputs and check there is something to search for
      */
-    String text = textArea.getText();
+    String t0 = textArea.getText();
+    String text = text.trim(); // BH 2019.01.30
     if (replacePunctuation.isEnabled() && replacePunctuation.isSelected())
     {
       text = text.replace(",", ";");
     }
     text = text.replaceAll("(\\s|[,; ])+", ";");
-    textArea.setText(text);
+    if (!t0.equals(text)) // BH 2019.01.30 no need to do setting if it is the same
+       textArea.setText(text);
     if (text.isEmpty())
     {
       // todo i18n