This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 875f0ba4bcd238d7def74ed979fe88e3e887cb67 Author: Benoit Tellier <[email protected]> AuthorDate: Sun Jan 30 22:06:37 2022 +0700 [REFACTORING] Remove a duplicated unused partially implemented class --- ...obStoreConfigurationValidationStartUpCheck.java | 36 ---------------------- 1 file changed, 36 deletions(-) diff --git a/server/container/guice/distributed/src/main/java/org/apache/james/modules/blobstore/validation/BlobStoreConfigurationValidationStartUpCheck.java b/server/container/guice/distributed/src/main/java/org/apache/james/modules/blobstore/validation/BlobStoreConfigurationValidationStartUpCheck.java deleted file mode 100644 index 12ddf4e..0000000 --- a/server/container/guice/distributed/src/main/java/org/apache/james/modules/blobstore/validation/BlobStoreConfigurationValidationStartUpCheck.java +++ /dev/null @@ -1,36 +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.james.modules.blobstore.validation; - -import org.apache.james.lifecycle.api.StartUpCheck; - -public class BlobStoreConfigurationValidationStartUpCheck implements StartUpCheck { - private static final String BLOB_STORE_CONFIGURATION_VALIDATION = "blobStore-configuration-validation"; - - @Override - public CheckResult check() { - return null; - } - - @Override - public String checkName() { - return BLOB_STORE_CONFIGURATION_VALIDATION; - } -} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
