alessandrobenedetti commented on code in PR #2030:
URL: https://github.com/apache/solr/pull/2030#discussion_r1397546121
##########
solr/core/src/java/org/apache/solr/rest/ManagedResourceStorage.java:
##########
@@ -421,8 +421,20 @@ public String getInfo() {
/** Default storage implementation that uses JSON as the storage format for
managed data. */
public static class JsonStorage extends ManagedResourceStorage {
+ private final int indentSize;
+
+ /** Uses 2 space characters as an indent. */
public JsonStorage(StorageIO storageIO, SolrResourceLoader loader) {
+ this(storageIO, loader, 2);
Review Comment:
Took a look at that commit, and it looks good to me! I don't see much
problem with it!
--
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]