summaryrefslogtreecommitdiffstats
path: root/java/com/google/gerrit/server/AuditEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/gerrit/server/AuditEvent.java')
-rw-r--r--java/com/google/gerrit/server/AuditEvent.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/java/com/google/gerrit/server/AuditEvent.java b/java/com/google/gerrit/server/AuditEvent.java
index 773a307aa6..54bbe23cf7 100644
--- a/java/com/google/gerrit/server/AuditEvent.java
+++ b/java/com/google/gerrit/server/AuditEvent.java
@@ -82,6 +82,12 @@ public class AuditEvent {
return uuid.hashCode();
}
+ // This is a value class that allows adding attributes by subclassing.
+ // Doing this is discouraged and using composition rather than inheritance to add fields to value
+ // types is preferred. However this class is part of the plugin API (used in the AuditListener
+ // extension point), hence we cannot change it without breaking plugins. Hence suppress the
+ // EqualsGetClass warning here.
+ @SuppressWarnings("EqualsGetClass")
@Override
public boolean equals(Object obj) {
if (this == obj) {