From 42eef2f0804100728451afcc085f0940cbbc44c4 Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Sun, 17 Nov 2019 11:29:05 +0100 Subject: Cleanup whitespace --- .../mimuw/cloudatlas/interpreter/QueryResult.java | 36 +++++++++++----------- 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'src/main/java/pl/edu/mimuw/cloudatlas/interpreter/QueryResult.java') 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; + } } -- cgit v1.2.3