This is an automated email from the ASF dual-hosted git repository.

madhan pushed a commit to branch branch-0.8
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/branch-0.8 by this push:
     new 7ff396a  ATLAS-3036: Improve FullTextMapper performance during entity 
retrieval - #2
7ff396a is described below

commit 7ff396af047c8ff829dbe5b8a4094177fb3e9686
Author: Madhan Neethiraj <mad...@apache.org>
AuthorDate: Sun Jan 27 23:48:48 2019 -0800

    ATLAS-3036: Improve FullTextMapper performance during entity retrieval - #2
---
 .../main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java
 
b/repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java
index 79d15ed..1dbb647 100644
--- 
a/repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java
+++ 
b/repository/src/main/java/org/apache/atlas/repository/graph/FullTextMapperV2.java
@@ -136,7 +136,7 @@ public class FullTextMapperV2 {
         if (entity != null) {
             StringBuilder sb = new StringBuilder();
 
-            map(entity, entityExtInfo, sb, new HashSet<>());
+            map(entity, entityExtInfo, sb, new HashSet<String>());
 
             ret = sb.toString();
         }
@@ -315,4 +315,4 @@ public class FullTextMapperV2 {
 
         return ret;
     }
-}
\ No newline at end of file
+}

Reply via email to