We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b475d1 commit 74cc427Copy full SHA for 74cc427
sentry/src/main/java/io/sentry/protocol/FeatureFlag.java
@@ -52,8 +52,8 @@ public void setResult(final @NotNull Boolean result) {
52
public boolean equals(Object o) {
53
if (this == o) return true;
54
if (o == null || getClass() != o.getClass()) return false;
55
- FeatureFlag flag = (FeatureFlag) o;
56
- return Objects.equals(flag, flag.flag) && Objects.equals(result, flag.result);
+ final @NotNull FeatureFlag otherFlag = (FeatureFlag) o;
+ return Objects.equals(flag, otherFlag.flag) && Objects.equals(result, otherFlag.result);
57
}
58
59
@Override
0 commit comments