Fix processName = null (#2739)
This commit is contained in:
parent
0d7cfd3797
commit
8d73414d2d
|
|
@ -129,7 +129,7 @@ public class ConfigManager {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return processName.hashCode() ^ uid;
|
return Objects.hashCode(processName) ^ uid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue