fix: don't apply types if search failed (#840)
This commit is contained in:
@@ -67,9 +67,10 @@ public class TypeSearch {
|
||||
LOG.warn("Multi-variable search failed in {}", mth);
|
||||
}
|
||||
}
|
||||
|
||||
boolean applySuccess = applyResolvedVars();
|
||||
return searchSuccess && applySuccess;
|
||||
if (searchSuccess) {
|
||||
return applyResolvedVars();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private boolean applyResolvedVars() {
|
||||
|
||||
Reference in New Issue
Block a user