Say there is a use case of an unpick:
private static final int SOME_VALUE = 0;
public void user() {
call(0);
}
public void call(int value) {
if (value == 0) { /* do stuff */ }
}
If it's unpicked, unpick will only replace the 0 in the user(); it won't replace that in call(int)'s value == 0 check.
Screenshot:

Note: migrated from FabricMC/yarn#2268
Say there is a use case of an unpick:
If it's unpicked, unpick will only replace the 0 in the
user(); it won't replace that incall(int)'svalue == 0check.Screenshot:

Note: migrated from FabricMC/yarn#2268