m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagdalena Grodzińska <mag.grodzinska@gmail.com>2020-01-12 23:07:32 +0100
committerMagdalena Grodzińska <mag.grodzinska@gmail.com>2020-01-12 23:07:32 +0100
commitcc901690a8e3e41a1958ae33d95462031fba8e89 (patch)
treec22e65c29c9826c6ccdf027979dbe6e89686f1a5
parent39d7f8b70dfef38e4b6169e53fb7066743d734d4 (diff)
Fix query value typo
-rw-r--r--src/main/java/pl/edu/mimuw/cloudatlas/model/ValueQuery.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/java/pl/edu/mimuw/cloudatlas/model/ValueQuery.java b/src/main/java/pl/edu/mimuw/cloudatlas/model/ValueQuery.java
index c5d4b54..6839e4c 100644
--- a/src/main/java/pl/edu/mimuw/cloudatlas/model/ValueQuery.java
+++ b/src/main/java/pl/edu/mimuw/cloudatlas/model/ValueQuery.java
@@ -23,7 +23,6 @@ public class ValueQuery extends Value {
/**
* Constructs a new <code>ValueQuery</code> object.
*
- * @param name the name of the query
* @param query the code of the query
*/
public ValueQuery(String query) throws Exception {
@@ -61,10 +60,6 @@ public class ValueQuery extends Value {
public void setTimestamp(long timestamp) { this.timestamp = timestamp; }
- public String getCode() {
- return code;
- }
-
@Override
public Type getType() {
return TypePrimitive.QUERY;