This is an automated email from the ASF dual-hosted git repository. jackietien pushed a commit to branch DeleteUselessClass in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 53b19ea2db107db574148dc5fa17b86dca232c8b Author: JackieTien97 <[email protected]> AuthorDate: Thu Jun 23 16:18:25 2022 +0800 Delete Useless Class --- .../operator/process/FilterNullOperator.java | 57 ------------------- .../operator/sink/FragmentSinkOperator.java | 66 ---------------------- 2 files changed, 123 deletions(-) diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/process/FilterNullOperator.java b/server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/process/FilterNullOperator.java deleted file mode 100644 index d2084ea12e..0000000000 --- a/server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/process/FilterNullOperator.java +++ /dev/null @@ -1,57 +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.iotdb.db.mpp.execution.operator.process; - -import org.apache.iotdb.db.mpp.execution.operator.OperatorContext; -import org.apache.iotdb.tsfile.read.common.block.TsBlock; - -import com.google.common.util.concurrent.ListenableFuture; - -public class FilterNullOperator implements ProcessOperator { - - @Override - public OperatorContext getOperatorContext() { - return null; - } - - @Override - public ListenableFuture<Void> isBlocked() { - return ProcessOperator.super.isBlocked(); - } - - @Override - public TsBlock next() { - return null; - } - - @Override - public boolean hasNext() { - return false; - } - - @Override - public void close() throws Exception { - ProcessOperator.super.close(); - } - - @Override - public boolean isFinished() { - return false; - } -} diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/sink/FragmentSinkOperator.java b/server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/sink/FragmentSinkOperator.java deleted file mode 100644 index bc4dc781e7..0000000000 --- a/server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/sink/FragmentSinkOperator.java +++ /dev/null @@ -1,66 +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.iotdb.db.mpp.execution.operator.sink; - -import org.apache.iotdb.db.mpp.execution.operator.OperatorContext; -import org.apache.iotdb.tsfile.read.common.block.TsBlock; - -import com.google.common.util.concurrent.ListenableFuture; - -public class FragmentSinkOperator implements SinkOperator { - - @Override - public OperatorContext getOperatorContext() { - return null; - } - - @Override - public ListenableFuture<Void> isBlocked() { - return SinkOperator.super.isBlocked(); - } - - @Override - public TsBlock next() { - return null; - } - - @Override - public boolean hasNext() { - return false; - } - - @Override - public void close() throws Exception { - SinkOperator.super.close(); - } - - @Override - public boolean isFinished() { - return false; - } - - @Override - public void send(TsBlock tsBlock) {} - - @Override - public void setNoMoreTsBlocks() {} - - @Override - public void abort() {} -}
