Commit f5b6cd95 authored by claes's avatar claes

Bugfix in hostobject

parent fec9ee89
/* /*
* Proview $Id: GeDyn.java,v 1.9 2006-06-14 05:06:05 claes Exp $ * Proview $Id: GeDyn.java,v 1.10 2007-01-30 06:51:17 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -131,6 +131,9 @@ public class GeDyn { ...@@ -131,6 +131,9 @@ public class GeDyn {
this.access = access; this.access = access;
} }
public void setInstance( String instance) { public void setInstance( String instance) {
if ( instance.equals(""))
instance = null;
else
this.instance = instance; this.instance = instance;
} }
public void setHostObject( String hostObject) { public void setHostObject( String hostObject) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment