Repository: wicket Updated Branches: refs/heads/master 7a15297e0 -> 936adf7c1
Improve javadoc for LambdaModel Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/936adf7c Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/936adf7c Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/936adf7c Branch: refs/heads/master Commit: 936adf7c1658de32cabddfd6acc4994bb3f5ea45 Parents: 7a15297 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Wed Nov 9 08:39:47 2016 +0100 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Wed Nov 9 08:40:18 2016 +0100 ---------------------------------------------------------------------- .../src/main/java/org/apache/wicket/model/LambdaModel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/936adf7c/wicket-core/src/main/java/org/apache/wicket/model/LambdaModel.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/model/LambdaModel.java b/wicket-core/src/main/java/org/apache/wicket/model/LambdaModel.java index 8fb9d6a..408b271 100644 --- a/wicket-core/src/main/java/org/apache/wicket/model/LambdaModel.java +++ b/wicket-core/src/main/java/org/apache/wicket/model/LambdaModel.java @@ -26,10 +26,10 @@ import org.danekja.java.util.function.serializable.SerializableSupplier; /** * <code>LambdaModel</code> is a basic implementation of an <code>IModel</code> - * that uses a serializable {@link java.util.function.Supplier} to get the object - * and {@link java.util.function.Consumer} to set it. + * that uses a serializable {@link SerializableSupplier} to get the object + * and {@link SerializableConsumer} to set it. * - * The detach method defaults does nothing. + * The {@link #detach()} method by default does nothing. * * @param <T> The type of the Model Object */
