leventov commented on a change in pull request #9165: Forbid easily misused 
HashSet and HashMap constructors
URL: https://github.com/apache/druid/pull/9165#discussion_r367281139
 
 

 ##########
 File path: codestyle/druid-forbidden-apis.txt
 ##########
 @@ -31,6 +31,12 @@ 
java.lang.String#replace(java.lang.CharSequence,java.lang.CharSequence) @ Use on
 java.lang.String#replaceAll(java.lang.String,java.lang.String) @ Use one of 
the appropriate methods in StringUtils instead, or compile and cache a Pattern 
explicitly
 java.lang.String#replaceFirst(java.lang.String,java.lang.String) @ Use 
String.indexOf() and substring methods, or compile and cache a Pattern 
explicitly
 java.nio.file.Files#createTempDirectory(java.lang.String 
prefix,java.nio.file.FileAttribute...) @ Use 
org.apache.druid.java.util.common.FileUtils.createTempDir()
+java.util.HashMap#<init>(int) @ Use 
com.google.common.collect.Maps#newHashMapWithExpectedSize(int) instead
+java.util.HashMap#<init>(int, float) @ Use 
com.google.common.collect.Maps#newHashMapWithExpectedSize(int) instead
+java.util.HashSet#<init>(int) @ Use 
com.google.collect.Sets#newHashSetWithExpectedSize(int) instead
+java.util.HashSet#<init>(int, float) @ Use 
com.google.collect.Sets#newHashSetWithExpectedSize(int) instead
+java.util.LinkedHashSet#<init>(int) @ Use 
com.google.collect.Sets#newLinkedHashSatWithExpectedSize(int) instead
+java.util.LinkedHashSet#<init>(int, float) @ Use 
com.google.collect.Sets#newLinkedHashSatWithExpectedSize(int) instead
 
 Review comment:
   LinkedHashMap should be prohibited, too, even though there is no method 
ready in Guava. A polyfill method could be added to `CollectionUtils`.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org

Reply via email to