CalvinKirs commented on code in PR #51539:
URL: https://github.com/apache/doris/pull/51539#discussion_r2133913505
##########
fe/fe-core/src/main/java/org/apache/doris/fs/obj/ObjStorage.java:
##########
@@ -34,7 +34,7 @@
public interface ObjStorage<C> {
// CHUNK_SIZE for multi part upload
- public static final int CHUNK_SIZE = 5 * 1024 * 1024;
+ int CHUNK_SIZE = 5 * 1024 * 1024;
Review Comment:
In Java, all fields in an interface are implicitly public, static, and
final, so explicitly declaring them as such is redundant.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]