You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iota.apache.org by to...@apache.org on 2016/11/29 23:29:26 UTC

[27/31] incubator-iota git commit: Removed the compilation error

Removed the compilation error


Project: http://git-wip-us.apache.org/repos/asf/incubator-iota/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-iota/commit/e96b066d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-iota/tree/e96b066d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-iota/diff/e96b066d

Branch: refs/heads/master
Commit: e96b066dc87da887ee168e83359a675d087828b2
Parents: 238cf47
Author: Shivansh <sh...@gmail.com>
Authored: Tue Nov 15 06:50:54 2016 +0530
Committer: Shivansh <sh...@gmail.com>
Committed: Tue Nov 15 06:50:54 2016 +0530

----------------------------------------------------------------------
 fey-core/src/main/scala/org/apache/iota/fey/TrieNode.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-iota/blob/e96b066d/fey-core/src/main/scala/org/apache/iota/fey/TrieNode.scala
----------------------------------------------------------------------
diff --git a/fey-core/src/main/scala/org/apache/iota/fey/TrieNode.scala b/fey-core/src/main/scala/org/apache/iota/fey/TrieNode.scala
index 2abbb86..bbcb50d 100644
--- a/fey-core/src/main/scala/org/apache/iota/fey/TrieNode.scala
+++ b/fey-core/src/main/scala/org/apache/iota/fey/TrieNode.scala
@@ -29,7 +29,7 @@ case class TrieNode(path: String, children: ArrayBuffer[TrieNode], events:ArrayB
 
 protected class Trie(systemName: String){
 
-  private val DEFAULT_TRIE_NODE = TrieNode(systemName, ArrayBuffer.empty, ArrayBuffer.empty
+  private val DEFAULT_TRIE_NODE = TrieNode(systemName, ArrayBuffer.empty, ArrayBuffer.empty)
 
   private val root: Option[TrieNode] = Option(DEFAULT_TRIE_NODE)
   var elements: Int = 0