From 38a6e30435d8e56b1a51cb9c7637a90ab843d581 Mon Sep 17 00:00:00 2001 From: Graham Russell Date: Tue, 21 Nov 2017 21:05:04 +0000 Subject: [PATCH] Removed functions.util.* as they don't seem to be used (for many years). --- .../functions/util/ArgumentDecoder.java | 41 ------------------- .../functions/util/ArgumentEncoder.java | 41 ------------------- 2 files changed, 82 deletions(-) delete mode 100644 src/core/org/apache/jmeter/functions/util/ArgumentDecoder.java delete mode 100644 src/core/org/apache/jmeter/functions/util/ArgumentEncoder.java diff --git a/src/core/org/apache/jmeter/functions/util/ArgumentDecoder.java b/src/core/org/apache/jmeter/functions/util/ArgumentDecoder.java deleted file mode 100644 index 85d191c5e31..00000000000 --- a/src/core/org/apache/jmeter/functions/util/ArgumentDecoder.java +++ /dev/null @@ -1,41 +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.functions.util; - -import org.apache.oro.text.perl.Perl5Util; - -/** - * Decodes an Argument by replacing '\x' with 'x' - */ -public final class ArgumentDecoder { - private static final Perl5Util util = new Perl5Util(); - - private static final String REGULAR_EXPRESSION = "s#[\\\\](.)#$1#g"; // $NON-NLS-1$ - - // TODO does not appear to be used - public static String decode(String s) { - return util.substitute(REGULAR_EXPRESSION, s); - } - - /** - * Prevent instantiation of utility class. - */ - private ArgumentDecoder() { - } -} diff --git a/src/core/org/apache/jmeter/functions/util/ArgumentEncoder.java b/src/core/org/apache/jmeter/functions/util/ArgumentEncoder.java deleted file mode 100644 index 26e97fa24b7..00000000000 --- a/src/core/org/apache/jmeter/functions/util/ArgumentEncoder.java +++ /dev/null @@ -1,41 +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.functions.util; - -import org.apache.oro.text.perl.Perl5Util; - -/** - * Encode an Argument - */ -public final class ArgumentEncoder { - private static final Perl5Util util = new Perl5Util(); - - private static final String REGULAR_EXPRESSION = "s#([${}(),\\\\])#\\$1#g"; - - // TODO does not appear to be used - public static String encode(String s) { - return util.substitute(REGULAR_EXPRESSION, s); - } - - /** - * Prevent instantiation of utility class. - */ - private ArgumentEncoder() { - } -}