Useless null checks in WindowsAppUtil #1

Open
opened 2025-04-21 14:30:54 -04:00 by idk · 0 comments
Owner

WindowsAppUtil contains about a half dozen cases of this poor code pattern:

File f = new File("xxx");
if (f != null) {
  ...
}

f can never be null when set from a constructor.

WindowsAppUtil contains about a half dozen cases of this poor code pattern: ```java File f = new File("xxx"); if (f != null) { ... } ``` f can never be null when set from a constructor.
idk self-assigned this 2025-04-21 14:30:54 -04:00
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: I2P_Developers/i2p.firefox#1
No description provided.