From 61cb23db5cf149346f7bd5e4d413a119b3693e62 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Mon, 30 Jan 2017 10:30:18 +0100 Subject: [PATCH] DATAMONGO-1600 - Make GraphLookupOperationBuilder public. Make GraphLookupOperationBuilder public so it can be used in types outside the aggregation package. Original Pull Request: #437 --- .../data/mongodb/core/aggregation/GraphLookupOperation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/GraphLookupOperation.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/GraphLookupOperation.java index d46f36763..15612501b 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/GraphLookupOperation.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/GraphLookupOperation.java @@ -1,5 +1,5 @@ /* - * Copyright 2016 the original author or authors. + * Copyright 2016-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -332,7 +332,7 @@ public class GraphLookupOperation implements InheritsFieldsAggregationOperation /** * @author Mark Paluch */ - static final class GraphLookupOperationBuilder { + public static final class GraphLookupOperationBuilder { private final String from; private final List startWith;