Skip to content

Commit 4f4bad4

Browse files
committed
avoid compiler warning about unused parameters in deprecated method.
1 parent 195258d commit 4f4bad4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public interface BooleanFormulaVisitor<R> {
4141
* FormulaVisitor#visitQuantifier}.
4242
*/
4343
@Deprecated(since = "2025.07, because bound variables are never created or used in the visitor")
44+
@SuppressWarnings("unused")
4445
default R visitBoundVar(BooleanFormula var, int deBruijnIdx) {
4546
throw new UnsupportedOperationException(
4647
"Bound variables are no longer explicitly visited in JavaSMT. "

0 commit comments

Comments
 (0)