WinPipeConnector: Resolve warnings by using "equals" instead of "=="

Errorprone raises the following warning: "[ReferenceEquality] Comparison
using reference equality instead of value equality".

Change-Id: Ic73305b2af628f66e7659ea1b839b3a640e3cd8d
This commit is contained in:
Fabio Ponciroli 2022-03-03 17:27:25 +01:00
parent 2d9ed3cf2a
commit a820ff0896
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public boolean connect() throws IOException {
file = libs.kernel.CreateFile(pipeName,
WinNT.GENERIC_READ | WinNT.GENERIC_WRITE, FILE_SHARE_NONE,
null, WinNT.OPEN_EXISTING, FILE_ATTRIBUTE_NONE, null);
if (file == null || file == WinBase.INVALID_HANDLE_VALUE) {
if (file == null || WinBase.INVALID_HANDLE_VALUE.equals(file)) {
int errorCode = libs.kernel.GetLastError();
if (errorCode == WinError.ERROR_FILE_NOT_FOUND
&& CANONICAL_PIPE_NAME.equalsIgnoreCase(pipeName)) {