You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Findings are fix()ed before logging. This doesn't work if the configuration is changed or an inherited dependency's provider is deleted, because the logic for finding a position will be looking for a string which no longer exists.
For instance, if the build file had implementation project(':foo'), but then MustBeApi changed it to api project(':foo'), the position for implementation project(':foo') will benull.
The text was updated successfully, but these errors were encountered:
Findings are
fix()
ed before logging. This doesn't work if the configuration is changed or an inherited dependency's provider is deleted, because the logic for finding a position will be looking for a string which no longer exists.For instance, if the build file had
implementation project(':foo')
, but thenMustBeApi
changed it toapi project(':foo')
, the position forimplementation project(':foo')
will benull
.The text was updated successfully, but these errors were encountered: