File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed 
server/src/main/java/org/elasticsearch/index/store Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1217,14 +1217,14 @@ public static String digestToString(long digest) {
12171217     * mechanism that is used in some repository plugins (S3 for example). However, the checksum is only calculated on 
12181218     * the first read. All consecutive reads of the same data are not used to calculate the checksum. 
12191219     */ 
1220-     static  class  VerifyingIndexInput  extends  ChecksumIndexInput  {
1220+     public   static  class  VerifyingIndexInput  extends  ChecksumIndexInput  {
12211221        private  final  IndexInput  input ;
12221222        private  final  Checksum  digest ;
12231223        private  final  long  checksumPosition ;
12241224        private  final  byte [] checksum  = new  byte [8 ];
12251225        private  long  verifiedPosition  = 0 ;
12261226
1227-         VerifyingIndexInput (IndexInput  input ) {
1227+         public   VerifyingIndexInput (IndexInput  input ) {
12281228            this (input , new  BufferedChecksum (new  CRC32 ()));
12291229        }
12301230
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments