Skip to content

Commit

Permalink
Override upperBound instead of leastUpperBound (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ao-senXiong authored Apr 20, 2024
1 parent 71cee10 commit 938898f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/checkers/inference/dataflow/InferenceValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private InferenceAnalysis getInferenceAnalysis() {
*
*/
@Override
public CFValue leastUpperBound(CFValue other) {
public CFValue upperBound(CFValue other, TypeMirror upperBoundTypeMirror, boolean shouldWiden) {
if (other == null) {
return this;
}
Expand Down

0 comments on commit 938898f

Please sign in to comment.