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
<mutation unstable="false">
<sourceFile>Checker.java</sourceFile>
<mutatedClass>com.puppycrawl.tools.checkstyle.Checker</mutatedClass>
<mutatedMethod>getExternalResourceLocations</mutatedMethod>
<mutator>org.pitest.mutationtest.engine.gregor.mutators.experimental.NakedReceiverMutator</mutator>
<description>replaced call to java/util/stream/Stream::map with receiver</description>
<lineContent>.map(ExternalResourceHolder.class::cast)</lineContent>
</mutation>
pitest will suggest the NakedReceiverMutator if we follow pitest in this case then .map() needs to be removed and if we do that then the code cannot be compilable.
whenever some type casting has been done using
.map
pitest will suggest the NakedReceiverMutator if we follow pitest in this case then
.map()
needs to be removed and if we do that then the code cannot be compilable.we have faced this issue at checkstyle/checkstyle#13913 and checkstyle/checkstyle#13913.
as the solution we have done changes like
The text was updated successfully, but these errors were encountered: