Skip to content

Commit

Permalink
Simple rename
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecsl committed Oct 27, 2016
1 parent a34d982 commit 34b2228
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@ private void scanForRClasses(RoundEnvironment env) {
}
}

private void parseRClass(String respectivePackageName, String rClass) {
private void parseRClass(String rPackageName, String rClass) {
Element element;

try {
Expand All @@ -1270,10 +1270,10 @@ private void parseRClass(String respectivePackageName, String rClass) {

JCTree tree = (JCTree) trees.getTree(element);
if (tree != null) { // tree can be null if the references are compiled types and not source
IdScanner idScanner = new IdScanner(symbols, respectivePackageName);
IdScanner idScanner = new IdScanner(symbols, rPackageName);
tree.accept(idScanner);
} else {
parseCompiledR(respectivePackageName, (TypeElement) element);
parseCompiledR(rPackageName, (TypeElement) element);
}
}

Expand Down

0 comments on commit 34b2228

Please sign in to comment.