diff options
| author | RncLsn <rnc.lsn@gmail.com> | 2015-06-16 15:54:53 +0100 |
|---|---|---|
| committer | RncLsn <rnc.lsn@gmail.com> | 2015-06-16 15:54:53 +0100 |
| commit | 7cd962751db2a88f426b8b9d7b9dd0d76e2cc1b5 (patch) | |
| tree | a271283211f9a156e7cb04f578a94a3ca5d0d0f7 /src/uk/ac/ox/cs/pagoda/reasoner/QueryReasoner.java | |
| parent | 3a276b7c7836e56a171ab753b018913ce022ba8e (diff) | |
| download | ACQuA-7cd962751db2a88f426b8b9d7b9dd0d76e2cc1b5.tar.gz ACQuA-7cd962751db2a88f426b8b9d7b9dd0d76e2cc1b5.zip | |
Maybe fixed bug in internalisation.
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/reasoner/QueryReasoner.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/reasoner/QueryReasoner.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/reasoner/QueryReasoner.java b/src/uk/ac/ox/cs/pagoda/reasoner/QueryReasoner.java index 3a057ec..e8daa3b 100644 --- a/src/uk/ac/ox/cs/pagoda/reasoner/QueryReasoner.java +++ b/src/uk/ac/ox/cs/pagoda/reasoner/QueryReasoner.java | |||
| @@ -206,7 +206,7 @@ public abstract class QueryReasoner extends Disposable { | |||
| 206 | if you call twice, you will end up with a json file with multiple roots */ | 206 | if you call twice, you will end up with a json file with multiple roots */ |
| 207 | if(answerWriter != null) gson.toJson(queryRecords, answerWriter); | 207 | if(answerWriter != null) gson.toJson(queryRecords, answerWriter); |
| 208 | // queryRecords.stream().forEach(record -> Utility.logDebug(gson.toJson(record))); | 208 | // queryRecords.stream().forEach(record -> Utility.logDebug(gson.toJson(record))); |
| 209 | queryRecords.stream().forEach(record -> record.dispose()); | 209 | queryRecords.stream().forEach(QueryRecord::dispose); |
| 210 | } | 210 | } |
| 211 | 211 | ||
| 212 | @Override | 212 | @Override |
