epugh commented on code in PR #4669:
URL: https://github.com/apache/solr/pull/4669#discussion_r3667680521
##########
solr/solrj/src/java/org/apache/solr/common/LinkedHashMapWriter.java:
##########
@@ -20,24 +20,13 @@
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
-import java.util.Map;
-import org.apache.solr.common.util.SuppressForbidden;
public class LinkedHashMapWriter<V> extends LinkedHashMap<String, V>
implements MapWriter {
- @SuppressForbidden(reason = "extends LinkedHashMap")
- public LinkedHashMapWriter(int initialCapacity) {
- super(initialCapacity);
- }
-
public LinkedHashMapWriter() {
super();
}
Review Comment:
Hummm... Maybe? It feels like this is kind of internal, but maybe
not... Would love opinoni from someone else.
--
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]