]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/dbObjects/Name.java
UPD: Move some template classes to there reightful place.
[gigi.git] / src / org / cacert / gigi / dbObjects / Name.java
index e28bf2b26e2bbfb514eebc3e6e4f73d59b6c3a81..7dcaeec60f823b96644e791710d3158cf8926786 100644 (file)
@@ -4,9 +4,9 @@ import java.io.PrintWriter;
 import java.util.Map;
 
 import org.cacert.gigi.localisation.Language;
-import org.cacert.gigi.output.Outputable;
+import org.cacert.gigi.output.template.Outputable;
 
-public class Name implements Outputable, Cloneable {
+public class Name implements Outputable {
 
     String fname;
 
@@ -101,13 +101,4 @@ public class Name implements Outputable, Cloneable {
                 (mname != null && suffix != null && text.equals(fname + " " + mname + " " + lname + " " + suffix));
     }
 
-    @Override
-    protected Name clone() {
-        try {
-            return (Name) super.clone();
-        } catch (CloneNotSupportedException e) {
-            throw new Error(e);
-        }
-    }
-
 }