You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by no...@apache.org on 2023/08/16 12:41:03 UTC

[solr] branch jira/solr16939 updated: tidy

This is an automated email from the ASF dual-hosted git repository.

noble pushed a commit to branch jira/solr16939
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/jira/solr16939 by this push:
     new 4df13d1e045 tidy
4df13d1e045 is described below

commit 4df13d1e045c03cbfb25151839e411aef07b8698
Author: noblepaul <no...@gmail.com>
AuthorDate: Wed Aug 16 22:40:48 2023 +1000

    tidy
---
 solr/core/src/java/org/apache/solr/handler/loader/CborLoader.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/handler/loader/CborLoader.java b/solr/core/src/java/org/apache/solr/handler/loader/CborLoader.java
index 81392561e78..3f0f6067625 100644
--- a/solr/core/src/java/org/apache/solr/handler/loader/CborLoader.java
+++ b/solr/core/src/java/org/apache/solr/handler/loader/CborLoader.java
@@ -123,7 +123,7 @@ public class CborLoader {
     if (t == JsonToken.VALUE_NUMBER_INT || t == JsonToken.VALUE_NUMBER_FLOAT) {
       return p.getNumberValue();
     }
-    if ( t == JsonToken.START_OBJECT) {
+    if (t == JsonToken.START_OBJECT) {
       Object[] returnVal = new Object[1];
       new CborLoader(cborFactory, d -> returnVal[0] = d).handleDoc(p);
       return returnVal[0];