This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push: new 88e06fc Remove unused deprecated classes 88e06fc is described below commit 88e06fc1483feac111f198e9c0c7ff0fcdf9aad6 Author: remm <r...@apache.org> AuthorDate: Tue Jun 23 14:06:08 2020 +0200 Remove unused deprecated classes --- .../catalina/startup/SetAllPropertiesRule.java | 42 -------------------- .../catalina/startup/SetContextPropertiesRule.java | 46 ---------------------- 2 files changed, 88 deletions(-) diff --git a/java/org/apache/catalina/startup/SetAllPropertiesRule.java b/java/org/apache/catalina/startup/SetAllPropertiesRule.java deleted file mode 100644 index 7288fe6..0000000 --- a/java/org/apache/catalina/startup/SetAllPropertiesRule.java +++ /dev/null @@ -1,42 +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.catalina.startup; - -import org.apache.tomcat.util.digester.SetPropertiesRule; - -/** - * Rule that uses the introspection utils to set properties. - * - * @author Remy Maucherat - * @deprecated This will be removed in Tomcat 10 - */ -@Deprecated -public class SetAllPropertiesRule extends SetPropertiesRule { - - - // ----------------------------------------------------------- Constructors - public SetAllPropertiesRule() { - super(); - } - - public SetAllPropertiesRule(String[] exclude) { - super(exclude); - } - -} diff --git a/java/org/apache/catalina/startup/SetContextPropertiesRule.java b/java/org/apache/catalina/startup/SetContextPropertiesRule.java deleted file mode 100644 index 36ad6a9..0000000 --- a/java/org/apache/catalina/startup/SetContextPropertiesRule.java +++ /dev/null @@ -1,46 +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.catalina.startup; - -import org.apache.tomcat.util.digester.SetPropertiesRule; - -/** - * Rule that uses the introspection utils to set properties of a context - * (everything except "path"). - * - * @author Remy Maucherat - * @deprecated This will be removed in Tomcat 10 - */ -@Deprecated -public class SetContextPropertiesRule extends SetPropertiesRule { - - - // ----------------------------------------------------------- Constructors - - public SetContextPropertiesRule() { - super(new String[]{"path", "docBase"}); - } - - // ----------------------------------------------------- Instance Variables - - - // --------------------------------------------------------- Public Methods - - -} --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org