From: Roland Haeder Date: Sat, 20 Feb 2016 21:03:31 +0000 (+0100) Subject: Added missing this. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a593dfece8c5ac20fc5e391221990c28817a1407;p=jphone-core.git Added missing this. --- diff --git a/src/org/mxchange/jphone/phonenumbers/cellphone/CellphoneNumber.java b/src/org/mxchange/jphone/phonenumbers/cellphone/CellphoneNumber.java index 60f464a..2ec89ec 100644 --- a/src/org/mxchange/jphone/phonenumbers/cellphone/CellphoneNumber.java +++ b/src/org/mxchange/jphone/phonenumbers/cellphone/CellphoneNumber.java @@ -102,7 +102,7 @@ public class CellphoneNumber implements DialableCellphoneNumber, Comparable { public boolean equals (final Object object) { if (object == null) { return false; - } else if (getClass() != object.getClass()) { + } else if (this.getClass() != object.getClass()) { return false; }