diff --git a/src/api/java/Context.java b/src/api/java/Context.java
index 6b6c63ac3..cc5c07c5e 100644
--- a/src/api/java/Context.java
+++ b/src/api/java/Context.java
@@ -2911,20 +2911,6 @@ public class Context extends IDisposable
Native.updateParamValue(nCtx(), id, value);
}
- /**
- * Get a configuration parameter. Returns null if the parameter
- * value does not exist.
- **/
- public String getParamValue(String id) throws Z3Exception
- {
- Native.StringPtr res = new Native.StringPtr();
- boolean r = Native.getParamValue(nCtx(), id, res);
- if (!r)
- return null;
- else
- return res.value;
- }
-
long m_ctx = 0;
long nCtx()