This is an automated email from the ASF dual-hosted git repository.

chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 96499029b71 KAFKA-18588 Remove TopicKey.scala (#18624)
96499029b71 is described below

commit 96499029b71d83271169c7196e645689b3b209fd
Author: Ken Huang <[email protected]>
AuthorDate: Mon Jan 20 10:30:14 2025 +0800

    KAFKA-18588 Remove TopicKey.scala (#18624)
    
    Reviewers: Chia-Ping Tsai <[email protected]>
---
 core/src/main/scala/kafka/server/TopicKey.scala | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/core/src/main/scala/kafka/server/TopicKey.scala 
b/core/src/main/scala/kafka/server/TopicKey.scala
deleted file mode 100644
index 86b4f505b93..00000000000
--- a/core/src/main/scala/kafka/server/TopicKey.scala
+++ /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 kafka.server
-
-import org.apache.kafka.server.purgatory.DelayedOperationKey
-
-/* used by delayed-topic operations */
-case class TopicKey(topic: String) extends DelayedOperationKey {
-
-  override def keyLabel: String = topic
-}

Reply via email to