You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metron.apache.org by ce...@apache.org on 2017/09/14 21:59:21 UTC

metron git commit: METRON-1186: Profiler Functions use classutils from shaded storm closes apache/incubator-metron#758

Repository: metron
Updated Branches:
  refs/heads/master 2ae1f5adf -> f03c1c36e


METRON-1186: Profiler Functions use classutils from shaded storm closes apache/incubator-metron#758


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

Branch: refs/heads/master
Commit: f03c1c36ed1bce84cf5e1f8746e1cd6799f516c4
Parents: 2ae1f5a
Author: cstella <ce...@gmail.com>
Authored: Thu Sep 14 14:59:11 2017 -0700
Committer: cstella <ce...@gmail.com>
Committed: Thu Sep 14 14:59:11 2017 -0700

----------------------------------------------------------------------
 .../apache/metron/profiler/client/stellar/ProfilerFunctions.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/metron/blob/f03c1c36/metron-analytics/metron-profiler-client/src/main/java/org/apache/metron/profiler/client/stellar/ProfilerFunctions.java
----------------------------------------------------------------------
diff --git a/metron-analytics/metron-profiler-client/src/main/java/org/apache/metron/profiler/client/stellar/ProfilerFunctions.java b/metron-analytics/metron-profiler-client/src/main/java/org/apache/metron/profiler/client/stellar/ProfilerFunctions.java
index d6f2c6a..64c1e2e 100644
--- a/metron-analytics/metron-profiler-client/src/main/java/org/apache/metron/profiler/client/stellar/ProfilerFunctions.java
+++ b/metron-analytics/metron-profiler-client/src/main/java/org/apache/metron/profiler/client/stellar/ProfilerFunctions.java
@@ -20,7 +20,7 @@
 
 package org.apache.metron.profiler.client.stellar;
 
-import org.apache.commons.collections4.ListUtils;
+import org.apache.commons.lang3.ClassUtils;
 import org.apache.metron.common.configuration.profiler.ProfilerConfig;
 import org.apache.metron.common.utils.JSONUtils;
 import org.apache.metron.profiler.ProfileMeasurement;
@@ -29,7 +29,6 @@ import org.apache.metron.stellar.dsl.Context;
 import org.apache.metron.stellar.dsl.ParseException;
 import org.apache.metron.stellar.dsl.Stellar;
 import org.apache.metron.stellar.dsl.StellarFunction;
-import org.apache.storm.shade.org.apache.commons.lang.ClassUtils;
 import org.json.simple.JSONArray;
 import org.json.simple.JSONObject;
 import org.json.simple.parser.JSONParser;