You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: shenyu-sync-data-center/shenyu-sync-data-http/src/main/java/org/apache/shenyu/sync/data/http/config/HttpConfig.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -205,7 +205,7 @@ public boolean equals(final Object o) {
205
205
if (this == o) {
206
206
returntrue;
207
207
}
208
-
if (o == null || getClass() != o.getClass()) {
208
+
if (Objects.isNull(o) || getClass() != o.getClass()) {
Copy file name to clipboardexpand all lines: shenyu-sync-data-center/shenyu-sync-data-nacos/src/main/java/org/apache/shenyu/sync/data/nacos/config/NacosACMConfig.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ public boolean equals(final Object o) {
126
126
if (this == o) {
127
127
returntrue;
128
128
}
129
-
if (o == null || getClass() != o.getClass()) {
129
+
if (Objects.isNull(o) || getClass() != o.getClass()) {
Copy file name to clipboardexpand all lines: shenyu-sync-data-center/shenyu-sync-data-nacos/src/main/java/org/apache/shenyu/sync/data/nacos/config/NacosConfig.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,7 @@ public boolean equals(final Object o) {
146
146
if (this == o) {
147
147
returntrue;
148
148
}
149
-
if (o == null || getClass() != o.getClass()) {
149
+
if (Objects.isNull(o) || getClass() != o.getClass()) {
Copy file name to clipboardexpand all lines: shenyu-sync-data-center/shenyu-sync-data-websocket/src/main/java/org/apache/shenyu/plugin/sync/data/websocket/config/WebsocketConfig.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ public boolean equals(final Object o) {
72
72
if (this == o) {
73
73
returntrue;
74
74
}
75
-
if (o == null || getClass() != o.getClass()) {
75
+
if (Objects.isNull(o) || getClass() != o.getClass()) {
0 commit comments