Revert visibility of FunctionRegistration to public

Fixes #102
This commit is contained in:
Eric Bottard
2017-08-24 19:21:29 +02:00
parent a973b678f1
commit aa45ff4b94

View File

@@ -30,7 +30,7 @@ import reactor.core.publisher.Flux;
* @author Oleg Zhurakousky * @author Oleg Zhurakousky
* *
*/ */
class FunctionRegistration<T> { public class FunctionRegistration<T> {
private T target; private T target;
@@ -38,7 +38,7 @@ class FunctionRegistration<T> {
private final Map<String, String> properties = new LinkedHashMap<>(); private final Map<String, String> properties = new LinkedHashMap<>();
FunctionRegistration(T target) { public FunctionRegistration(T target) {
this.target = target; this.target = target;
} }