m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2019-11-17 11:29:05 +0100
committerMartin <marcin.j.chrzanowski@gmail.com>2019-11-17 11:28:25 +0100
commit42eef2f0804100728451afcc085f0940cbbc44c4 (patch)
treec4c6a95b4747fdba9bae07a74754812cb7ad67c8 /src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
parent7e205586a8351b27323b26c9c6499718283c1995 (diff)
Cleanup whitespace
Diffstat (limited to 'src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java')
-rw-r--r--src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java b/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
index 2fc0cce..130d287 100644
--- a/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
+++ b/src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java
@@ -29,27 +29,27 @@ import pl.edu.mimuw.cloudatlas.model.Value;
// immutable
public class QueryResult {
- private final Attribute name;
- private final Value value;
+ private final Attribute name;
+ private final Value value;
- public QueryResult(Attribute name, Value value) {
- this.name = name;
- this.value = value;
- }
+ public QueryResult(Attribute name, Value value) {
+ this.name = name;
+ this.value = value;
+ }
- public QueryResult(Value value) {
- this(null, value);
- }
+ public QueryResult(Value value) {
+ this(null, value);
+ }
- public Attribute getName() {
- return name;
- }
+ public Attribute getName() {
+ return name;
+ }
- public Value getValue() {
- return value;
- }
+ public Value getValue() {
+ return value;
+ }
- public String toString() {
- return name + ": " + value;
- }
+ public String toString() {
+ return name + ": " + value;
+ }
}