Fix documentation: Sampler is not a generic type

Signed-off-by: Gregor Zurowski <gregor@zurowski.org>
This commit is contained in:
Gregor Zurowski
2016-02-19 13:47:41 +01:00
parent 4bd484fb21
commit c6bb85923d

View File

@@ -35,7 +35,7 @@ A sampler can be installed just by creating a bean definition, e.g:
[source,java]
----
@Bean
public Sampler<?> defaultSampler() {
public Sampler defaultSampler() {
return new AlwaysSampler();
}
----