Skip to content
Snippets Groups Projects
Commit e7942f8c authored by tjc's avatar tjc
Browse files

comment out thow statement

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@2975 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 7d366a45
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/ActionController.java,v 1.1 2004-06-09 09:44:04 tjc Exp $
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/ActionController.java,v 1.2 2005-06-23 16:00:49 tjc Exp $
*/
package uk.ac.sanger.artemis;
......@@ -36,7 +36,7 @@ import uk.ac.sanger.artemis.io.EntryInformationException;
* This class is maintains a Vector of Action objects to allow Undo.
*
* @author Kim Rutherford <kmr@sanger.ac.uk>
* @version $Id: ActionController.java,v 1.1 2004-06-09 09:44:04 tjc Exp $
* @version $Id: ActionController.java,v 1.2 2005-06-23 16:00:49 tjc Exp $
**/
public class ActionController
......@@ -72,8 +72,11 @@ public class ActionController
}
if (current_action == null) {
throw new Error ("internal error - in ActionController.endAction() " +
"no Action in progress");
//
// believed to cause problems with FeatureList update if thrown...
//
// throw new Error ("internal error - in ActionController.endAction() " +
// "no Action in progress");
} else {
if (!current_action.isEmpty ()) {
action_vector.add (current_action);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment