Interface ILineMatcher


  • public interface ILineMatcher
    Checks whether lines can be considered equal in terms of potential execution time (if the potential execution time of line didn't change after the changes in line source code).
    • Method Detail

      • isMatch

        boolean isMatch​(String oldLine,
                        String newLine)
        Checks whether lines can be considered equal in terms of potential execution time.
        Parameters:
        oldLine - Line before changes. Cannot be null.
        newLine - Line after changes. Cannot be null.
        Returns:
        true if lines are equal in terms of potential execution time.