This is an automated email from the ASF dual-hosted git repository. hqtran pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 2276272ceaf23e9631e4f23a2f58695eeca049c8 Author: Benoit TELLIER <btell...@linagora.com> AuthorDate: Thu Jul 10 10:33:29 2025 +0200 [ENHANCEMENT] Delete no longer needed BlobStoreChoosingModule.java --- .../modules/blobstore/BlobStoreChoosingModule.java | 34 ---------------------- 1 file changed, 34 deletions(-) diff --git a/server/container/guice/distributed/src/main/java/org/apache/james/modules/blobstore/BlobStoreChoosingModule.java b/server/container/guice/distributed/src/main/java/org/apache/james/modules/blobstore/BlobStoreChoosingModule.java deleted file mode 100644 index 92aa3fcce2..0000000000 --- a/server/container/guice/distributed/src/main/java/org/apache/james/modules/blobstore/BlobStoreChoosingModule.java +++ /dev/null @@ -1,34 +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; - -import org.apache.james.backends.cassandra.components.CassandraDataDefinition; -import org.apache.james.blob.cassandra.CassandraBlobDataDefinition; - -import com.google.inject.AbstractModule; -import com.google.inject.multibindings.Multibinder; - -public class BlobStoreChoosingModule extends AbstractModule { - @Override - protected void configure() { - Multibinder<CassandraDataDefinition> cassandraDataDefinitions = Multibinder.newSetBinder(binder(), CassandraDataDefinition.class); - cassandraDataDefinitions.addBinding().toInstance(CassandraBlobDataDefinition.MODULE); - } -} --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org For additional commands, e-mail: notifications-h...@james.apache.org