This commit is contained in:
Josh Long
2016-02-12 17:12:40 +01:00
parent cacf5d25db
commit 004d277c81
33 changed files with 163 additions and 101 deletions

View File

@@ -42,7 +42,7 @@ public class ClassifierAdapter<C, T> implements Classifier<C, T> {
* Create a new {@link Classifier} from the delegate provided. Use the
* constructor as an alternative to the {@link #setDelegate(Object)} method.
*
* @param delegate
* @param delegate the delegate
*/
public ClassifierAdapter(Object delegate) {
setDelegate(delegate);
@@ -53,7 +53,7 @@ public class ClassifierAdapter<C, T> implements Classifier<C, T> {
* constructor as an alternative to the {@link #setDelegate(Classifier)}
* method.
*
* @param delegate
* @param delegate the classifier to delegate to
*/
public ClassifierAdapter(Classifier<C, T> delegate) {
classifier = delegate;