Fix processName = null (#2739)

This commit is contained in:
Nullptr 2023-09-04 01:05:22 +08:00 committed by GitHub
parent 0d7cfd3797
commit 8d73414d2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ public class ConfigManager {
@Override
public int hashCode() {
return processName.hashCode() ^ uid;
return Objects.hashCode(processName) ^ uid;
}
}