You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2016/11/09 07:40:23 UTC

wicket git commit: Improve javadoc for LambdaModel

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 <mg...@apache.org>
Authored: Wed Nov 9 08:39:47 2016 +0100
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
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
  */