indexer-core/src/main/java/org/apache/maven/index/DefaultSearchEngine.java [158:170]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    ArtifactInfo artifactInfo = IndexUtils.constructArtifactInfo(doc, context);

                    if (artifactInfo != null) {
                        artifactInfo.setRepository(context.getRepositoryId());
                        artifactInfo.setContext(context.getId());

                        if (req.getArtifactInfoFilter() != null) {
                            if (!req.getArtifactInfoFilter().accepts(context, artifactInfo)) {
                                continue;
                            }
                        }
                        if (req.getArtifactInfoPostprocessor() != null) {
                            req.getArtifactInfoPostprocessor().postprocess(context, artifactInfo);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



indexer-core/src/main/java/org/apache/maven/index/DefaultSearchEngine.java [206:218]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        ArtifactInfo artifactInfo = IndexUtils.constructArtifactInfo(doc, context);

                        if (artifactInfo != null) {
                            artifactInfo.setRepository(context.getRepositoryId());
                            artifactInfo.setContext(context.getId());

                            if (req.getArtifactInfoFilter() != null) {
                                if (!req.getArtifactInfoFilter().accepts(context, artifactInfo)) {
                                    continue;
                                }
                            }
                            if (req.getArtifactInfoPostprocessor() != null) {
                                req.getArtifactInfoPostprocessor().postprocess(context, artifactInfo);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



