Repository: incubator-zeppelin Updated Branches: refs/heads/master a45a5c38e -> f86a4e92e
[ZEPPELIN-49] Interpreter.getProperty returns wrong value - Fixed to return p, not property Author: Jongyoul Lee <[email protected]> Closes #41 from jongyoul/ZEPPELIN-49 and squashes the following commits: 21dea52 [Jongyoul Lee] [ZEPPELIN-49] Interpreter.getProperty returns wrong value - Fixed to return p, not property Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/f86a4e92 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/f86a4e92 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/f86a4e92 Branch: refs/heads/master Commit: f86a4e92ec59dc0ce74a995422d4bd08ac3ee061 Parents: a45a5c3 Author: Jongyoul Lee <[email protected]> Authored: Thu Apr 16 22:01:15 2015 +0900 Committer: Alexander Bezzubov <[email protected]> Committed: Fri Apr 17 12:20:27 2015 +0900 ---------------------------------------------------------------------- .../src/main/java/org/apache/zeppelin/interpreter/Interpreter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/f86a4e92/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/Interpreter.java ---------------------------------------------------------------------- diff --git a/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/Interpreter.java b/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/Interpreter.java index 58dcb64..3f7d35a 100644 --- a/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/Interpreter.java +++ b/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/Interpreter.java @@ -156,7 +156,7 @@ public abstract class Interpreter { } } - return property; + return p; } public String getProperty(String key) {
