Revision 713 org.gvsig.tools/library/trunk/org.gvsig.tools/org.gvsig.tools.lib/src/main/java/org/gvsig/tools/task/impl/BaseTaskStatus.java

View differences:

BaseTaskStatus.java
51 51
        String message = null;
52 52
        
53 53
        public Object clone() {
54
        	try {
55
				return super.clone();
56
			} catch (CloneNotSupportedException e) {
57
				// Do nothing, this can't be done
58
				return null;
59
			}
54
        	SubtaskValues other = new SubtaskValues();
55
        	other.curValue = this.curValue;
56
        	other.maxValue = this.maxValue;
57
        	other.minValue = this.minValue;
58
        	other.message = this.message;
59
        	return other;
60 60
        }
61 61
    }
62 62
    

Also available in: Unified diff