You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2021/04/05 12:36:46 UTC

[maven-indexer] branch master updated: (doc) fix checkstyle issue

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

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-indexer.git


The following commit(s) were added to refs/heads/master by this push:
     new 3d5bcc6  (doc) fix checkstyle issue
3d5bcc6 is described below

commit 3d5bcc6e12fc0536a21452efaf468a8aeef43d01
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Apr 5 14:36:39 2021 +0200

    (doc) fix checkstyle issue
---
 .../apache/maven/indexer/examples/indexing/IndexerConfiguration.java  | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/indexer-examples/indexer-examples-spring/src/main/java/org/apache/maven/indexer/examples/indexing/IndexerConfiguration.java b/indexer-examples/indexer-examples-spring/src/main/java/org/apache/maven/indexer/examples/indexing/IndexerConfiguration.java
index 53c2e1b..2cb0f01 100644
--- a/indexer-examples/indexer-examples-spring/src/main/java/org/apache/maven/indexer/examples/indexing/IndexerConfiguration.java
+++ b/indexer-examples/indexer-examples-spring/src/main/java/org/apache/maven/indexer/examples/indexing/IndexerConfiguration.java
@@ -58,9 +58,7 @@ public class IndexerConfiguration
 
     public List<IndexCreator> getIndexersAsList()
     {
-        return indexers == null ? //
-                new ArrayList<>( 0 ) //
-            : new ArrayList<>( indexers.values() );
+        return indexers == null ? new ArrayList<>( 0 ) : new ArrayList<>( indexers.values() );
     }
 
     public Indexer getIndexer()