Project

General

Profile

« Previous | Next » 

Revision 0a59dd14

Added by Andreas Müller almost 3 years ago

cleanup

View differences:

cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/agent/TeamOrPersonBase.java
114 114
        return result;
115 115
    }
116 116

  
117
   @Transient
117
    @Transient
118 118
    public String getFullTitle() {
119 119
        @SuppressWarnings("unchecked")
120 120
        T agent = (T)this;
......
136 136
    }
137 137

  
138 138
    @Override
139
    public TeamOrPersonBase clone() throws CloneNotSupportedException {
140
        @SuppressWarnings("rawtypes")
141
        TeamOrPersonBase<?> result = (TeamOrPersonBase)super.clone();
139
    public TeamOrPersonBase<T> clone() throws CloneNotSupportedException {
140
        TeamOrPersonBase<T> result = (TeamOrPersonBase<T>)super.clone();
142 141

  
143 142
        //nothing to do: collectorTitle, nomenclaturalTitle;
144 143
        return result;

Also available in: Unified diff