🎨 Replace DefaultIdentity with Kotlin version
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / wot / DefaultOwnIdentity.java
index 2f78943..de239db 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - DefaultOwnIdentity.java - Copyright Â© 2010–2016 David Roden
+ * Sone - DefaultOwnIdentity.java - Copyright Â© 2010–2019 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,8 +22,6 @@ import static com.google.common.base.Preconditions.checkNotNull;
 /**
  * An own identity is an identity that the owner of the node has full control
  * over.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David â€˜Bombe’ Roden</a>
  */
 public class DefaultOwnIdentity extends DefaultIdentity implements OwnIdentity {
 
@@ -86,8 +84,8 @@ public class DefaultOwnIdentity extends DefaultIdentity implements OwnIdentity {
        }
 
        @Override
-       public boolean equals(Object object) {
-               return super.equals(object);
+       public boolean equals(Object other) {
+               return super.equals(other);
        }
 
 }