1515package com .google .mu .errorprone ;
1616
1717import static com .google .common .collect .ImmutableList .toImmutableList ;
18+ import static com .google .errorprone .util .ASTHelpers .getStartPosition ;
1819import static com .google .mu .util .Substring .END ;
1920import static com .google .mu .util .Substring .first ;
2021import static com .google .mu .util .Substring .suffix ;
2627import com .google .common .base .Ascii ;
2728import com .google .common .collect .ImmutableList ;
2829import com .google .errorprone .VisitorState ;
29- import com .google .errorprone .util .ASTHelpers ;
3030import com .google .mu .util .CaseBreaker ;
3131import com .google .mu .util .Substring ;
3232import com .sun .source .tree .ExpressionTree ;
@@ -74,7 +74,7 @@ static ImmutableList<String> argsAsTexts(
7474 inMultiline
7575 && (i == args .size () - 1
7676 || lineMap .getLineNumber (next )
77- < lineMap .getLineNumber (ASTHelpers . getStartPosition (args .get (i + 1 ))))
77+ < lineMap .getLineNumber (getStartPosition (args .get (i + 1 ))))
7878 ? locateLineEnd (state , next )
7979 : next ;
8080 builder .add (state .getSourceCode ().subSequence (position , end ).toString ());
@@ -87,7 +87,7 @@ private static boolean inMultiline(
8787 int startPosition , List <? extends ExpressionTree > args , LineMap lineMap ) {
8888 long baseLine = lineMap .getLineNumber (startPosition );
8989 return args .stream ()
90- .anyMatch (arg -> lineMap .getLineNumber (ASTHelpers . getStartPosition (arg )) > baseLine );
90+ .anyMatch (arg -> lineMap .getLineNumber (getStartPosition (arg )) > baseLine );
9191 }
9292
9393 private static int locateLineEnd (VisitorState state , int pos ) {
0 commit comments