Fix misspelling of applicationListenerDectector variable

Closes gh-31006
This commit is contained in:
xumengqi 2023-08-07 22:14:55 +08:00 committed by GitHub
parent d3d414c3c7
commit 21a007bb15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -115,8 +115,8 @@ class ApplicationListenerDetector implements DestructionAwareBeanPostProcessor,
@Override @Override
public boolean equals(@Nullable Object other) { public boolean equals(@Nullable Object other) {
return (this == other || return (this == other ||
(other instanceof ApplicationListenerDetector applicationListenerDectector && (other instanceof ApplicationListenerDetector applicationListenerDetector &&
this.applicationContext == applicationListenerDectector.applicationContext)); this.applicationContext == applicationListenerDetector.applicationContext));
} }
@Override @Override