Skip to content

Commit

Permalink
Fix errorprone issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Jan 15, 2025
1 parent 337e50e commit 1221e7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,9 @@ public Blacklist getCurrentBlacklist() {
@Override
public void setFactory(TestTransceiverFactory factory) {
testFactory = factory;
txrxMap.clear();
synchronized (txrxMap) {
txrxMap.clear();
}
}
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static final class ViewFactory {
* @param viewName
* The name of the view that this class will make.
*/
public ViewFactory(@CompileTimeConstant String viewName) {
public ViewFactory(@CompileTimeConstant final String viewName) {
view = viewName;
}

Expand Down

0 comments on commit 1221e7b

Please sign in to comment.