You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2020/07/14 20:39:41 UTC

[jmeter] branch master updated: Delete unused class

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

pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 3dc3814  Delete unused class
3dc3814 is described below

commit 3dc38149479ba0de9853a6e0f97e3f81e3353faf
Author: pmouawad <p....@ubik-ingenierie.com>
AuthorDate: Tue Jul 14 22:39:05 2020 +0200

    Delete unused class
---
 .../json/jmespath/JMESPathCacheLoader.java         | 44 ----------------------
 1 file changed, 44 deletions(-)

diff --git a/src/components/src/main/java/org/apache/jmeter/extractor/json/jmespath/JMESPathCacheLoader.java b/src/components/src/main/java/org/apache/jmeter/extractor/json/jmespath/JMESPathCacheLoader.java
deleted file mode 100644
index 83a4bad..0000000
--- a/src/components/src/main/java/org/apache/jmeter/extractor/json/jmespath/JMESPathCacheLoader.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to you under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.jmeter.extractor.json.jmespath;
-
-import com.fasterxml.jackson.databind.JsonNode;
-import com.github.benmanes.caffeine.cache.CacheLoader;
-
-import io.burt.jmespath.Expression;
-import io.burt.jmespath.JmesPath;
-import io.burt.jmespath.RuntimeConfiguration;
-import io.burt.jmespath.function.FunctionRegistry;
-import io.burt.jmespath.jackson.JacksonRuntime;
-
-/**
- * @since 5.2
- */
-public class JMESPathCacheLoader implements CacheLoader<String, Expression<JsonNode>> {
-    final JmesPath<JsonNode> runtime;
-
-    public JMESPathCacheLoader() {
-        runtime = new JacksonRuntime(
-                new RuntimeConfiguration.Builder().withFunctionRegistry(FunctionRegistry.defaultRegistry()).build());
-    }
-
-    @Override
-    public Expression<JsonNode> load(String jmesPathExpression) throws Exception {
-        return runtime.compile(jmesPathExpression);
-    }
-}