From 8a5a6c20365799d647ee5b48cb0a515ef8e2fd2a Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Sun, 7 Apr 2013 22:25:21 -0400 Subject: [PATCH] removed unneeded warning, updated editor. --- customizing/fred/fred_variables.sh | 2 +- kona/src/org/feistymeow/dragdrop/dragdrop_list_test.java | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/customizing/fred/fred_variables.sh b/customizing/fred/fred_variables.sh index 54f808c5..feb32584 100644 --- a/customizing/fred/fred_variables.sh +++ b/customizing/fred/fred_variables.sh @@ -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. diff --git a/kona/src/org/feistymeow/dragdrop/dragdrop_list_test.java b/kona/src/org/feistymeow/dragdrop/dragdrop_list_test.java index 2775560e..57d4adbd 100644 --- a/kona/src/org/feistymeow/dragdrop/dragdrop_list_test.java +++ b/kona/src/org/feistymeow/dragdrop/dragdrop_list_test.java @@ -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()); -- 2.34.1