Replace assignment with operator assignment. #1538

This commit is contained in:
Michal Kordas 2015-08-02 15:32:51 +02:00 committed by Roman Ivanov
parent 4b26a472cc
commit 85ba2a3dce
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ public class ImportOrderCheck
}
else {
if (!Utils.endsWithChar(pkg, '.')) {
pkg = pkg + ".";
pkg += ".";
}
grp = Pattern.compile("^" + Pattern.quote(pkg));
}