From f64bc1089e195156470be70922371fa60d754551 Mon Sep 17 00:00:00 2001 From: Philipp Zehnder Date: Mon, 17 Jun 2024 10:50:22 +0200 Subject: [PATCH] refactor(#2938): Remove deprecated class ExtensionsModelSubmitter --- .../extensions/ExtensionsModelSubmitter.java | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 streampipes-service-extensions/src/main/java/org/apache/streampipes/service/extensions/ExtensionsModelSubmitter.java diff --git a/streampipes-service-extensions/src/main/java/org/apache/streampipes/service/extensions/ExtensionsModelSubmitter.java b/streampipes-service-extensions/src/main/java/org/apache/streampipes/service/extensions/ExtensionsModelSubmitter.java deleted file mode 100644 index 29b60bd186..0000000000 --- a/streampipes-service-extensions/src/main/java/org/apache/streampipes/service/extensions/ExtensionsModelSubmitter.java +++ /dev/null @@ -1,25 +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.streampipes.service.extensions; - -/** - * @deprecated Use {@link StreamPipesExtensionsServiceBase} instead - */ -@Deprecated(forRemoval = true, since = "0.95.0") -public abstract class ExtensionsModelSubmitter extends StreamPipesExtensionsServiceBase { -}