Index: /trunk/src/scriptbuilder/gui/IncidentPaletteFrame.java
===================================================================
--- /trunk/src/scriptbuilder/gui/IncidentPaletteFrame.java	(revision 132)
+++ /trunk/src/scriptbuilder/gui/IncidentPaletteFrame.java	(revision 136)
@@ -1,7 +1,3 @@
-/*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
+
 package scriptbuilder.gui;
 
@@ -28,5 +24,6 @@
 
 /**
- *
+ * Displays a "Pallete" of incidents from which the user can select
+ * incidents they want to include in the script they are constructing.
  * @author Bryan McGuffin
  */
@@ -34,5 +31,5 @@
 {
 
-    private String incDir;
+    private String incDir;  // name of directory of saved incidents
 
     private SimulationScript script;
@@ -105,16 +102,9 @@
         incDir = "";
         // Load the application properties (created by build.xml)
-        try
-        {
-            Properties props = new Properties();
-            props.load(this.getClass().getResourceAsStream(propfilename));
-            incDir = (String) props.get(propKey);
-        }
-        catch (IOException ex)
-        {
-            Logger.getLogger("scriptbuilder.gui").log(Level.SEVERE,
-                    "IncidentPaletteFrame.loadIncidentsFromFiles."
-                    + " IOError reading " + propfilename);
-        }
+        Properties props = new Properties();
+        //props.load(this.getClass().getResourceAsStream(propfilename));
+        //(String) props.get(propKey);
+        // Hard code this directory name for now.
+        incDir = "Incidents";
 
         incidentList = loadIncidentsFromFiles(incDir);
