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

roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/master by this push:
     new 6a35d628 [MINOR] refactor: Add overwrite annotation (#905)
6a35d628 is described below

commit 6a35d6287640c6b8b918734111e997e87717a22a
Author: Qing <[email protected]>
AuthorDate: Fri May 26 15:44:26 2023 +0800

    [MINOR] refactor: Add overwrite annotation (#905)
    
    ### What changes were proposed in this pull request?
    
    just add overwrite key word
    
    ### Why are the changes needed?
    
    Better code.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    compile ok
---
 .../apache/uniffle/storage/handler/impl/DataSkippableReadHandler.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/storage/src/main/java/org/apache/uniffle/storage/handler/impl/DataSkippableReadHandler.java
 
b/storage/src/main/java/org/apache/uniffle/storage/handler/impl/DataSkippableReadHandler.java
index 1cf7dfd4..b278c8b3 100644
--- 
a/storage/src/main/java/org/apache/uniffle/storage/handler/impl/DataSkippableReadHandler.java
+++ 
b/storage/src/main/java/org/apache/uniffle/storage/handler/impl/DataSkippableReadHandler.java
@@ -65,6 +65,7 @@ public abstract class DataSkippableReadHandler extends 
AbstractClientReadHandler
 
   protected abstract ShuffleDataResult readShuffleData(ShuffleDataSegment 
segment);
 
+  @Override
   public ShuffleDataResult readShuffleData() {
     if (shuffleDataSegments.isEmpty()) {
       ShuffleIndexResult shuffleIndexResult = readShuffleIndex();

Reply via email to