removed unneeded warning, updated editor.
authorFred T. Hamster <fred@gruntose.com>
Mon, 8 Apr 2013 02:25:21 +0000 (22:25 -0400)
committerFred T. Hamster <fred@gruntose.com>
Mon, 8 Apr 2013 02:25:21 +0000 (22:25 -0400)
customizing/fred/fred_variables.sh
kona/src/org/feistymeow/dragdrop/dragdrop_list_test.java

index 54f808c5ec93b5195515e4f1ad57fcff25fe984d..feb32584f06a70c39a5c0ceb59e05bed1ecfe6dc 100644 (file)
@@ -40,7 +40,7 @@ if [ -z "$NETHACKOPTIONS" ]; then
   export BROWSER=/usr/bin/firefox
 
   # editor and other mixed settings...
-  export EDITOR="$(which vi)"
+  export EDITOR="$(which vim)"
   export VISUAL="$EDITOR"
   # the editors for revision control must wait while document is edited,
   # so gvim and others launched to x window are not appropriate.
index 2775560e6d6045b531c60e07b579755b80facc82..57d4adbde2394cc67e9f4c9182ae21c41e31fcf5 100644 (file)
@@ -21,14 +21,13 @@ import org.apache.log4j.PropertyConfigurator;
  * @license This file is free software; you can modify and redistribute it under the terms of the
  *          Apache License v2.0: http://www.apache.org/licenses/LICENSE-2.0
  */
-@SuppressWarnings({"serial", "rawtypes"})
+@SuppressWarnings("serial")
 public class dragdrop_list_test extends JFrame implements ListSelectionListener
 {
     private DraggableDroppableList list;
     private JTextField fileName;
     static private Log logger = LogFactory.getLog(dragdrop_list_test.DraggableDroppableList.class);
 
-    @SuppressWarnings("unchecked")
        public dragdrop_list_test(String startPath)
     {
         super("dragdrop_test");
@@ -98,7 +97,6 @@ public class dragdrop_list_test extends JFrame implements ListSelectionListener
 
     public class DraggableDroppableList extends JList implements IDragonDropDataProvider
     {
-        @SuppressWarnings("unchecked")
                public DraggableDroppableList()
         {
             setModel(new DefaultListModel());