Skip to content

Commit

Permalink
Fix an assignment to a field in ClassProbesMapper
Browse files Browse the repository at this point in the history
instead of re-assigning the parameter.

See #16412

PiperOrigin-RevId: 516538078
Change-Id: I176935b838b73e932c57b2506e4994633e5061ff
  • Loading branch information
cushon authored and copybara-github committed Mar 14, 2023
1 parent b001bfc commit 16d3f99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Map<Integer, BranchExp> result() {
public ClassProbesMapper(String className) {
classLineToBranchExp = new TreeMap<Integer, BranchExp>();
stringPool = new StringPool();
className = stringPool.get(className);
this.className = stringPool.get(className);
}

@Override
Expand Down

0 comments on commit 16d3f99

Please sign in to comment.