File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
core/src/main/java/ch/cyberduck/core/threading
s3/src/main/java/ch/cyberduck/core/s3 Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1919
2020import java .util .concurrent .Callable ;
2121
22- public abstract class BackgroundExceptionCallable <T > implements Callable <T > {
22+ public interface BackgroundExceptionCallable <T > extends Callable <T > {
2323 @ Override
24- public abstract T call () throws BackgroundException ;
24+ T call () throws BackgroundException ;
2525}
Original file line number Diff line number Diff line change 2323import org .apache .logging .log4j .LogManager ;
2424import org .apache .logging .log4j .Logger ;
2525
26- public class S3PathStyleFallbackAdapter <R > extends BackgroundExceptionCallable <R > {
26+ public class S3PathStyleFallbackAdapter <R > implements BackgroundExceptionCallable <R > {
2727 private static final Logger log = LogManager .getLogger (S3PathStyleFallbackAdapter .class );
2828
2929 private final RequestEntityRestStorageService client ;
You can’t perform that action at this time.
0 commit comments