Github user svenmeier commented on a diff in the pull request:
https://github.com/apache/wicket/pull/244#discussion_r150014533
--- Diff:
wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/AjaxDownloadBehavior.java
---
@@ -323,10 +323,30 @@ private String getName()
}
/**
+ * Controls if anti cache parameter should be added to the URL or not
+ *
+ * @return {@code true} to add the anti cache request parameter, {@code
false} - otherwise
+ */
+ protected boolean shouldAddAntiCacheParameter() {
--- End diff --
What is this good for? The resource can control caching - I don't see the
necessity for an antiCache parameter (as ResourceLink doesn't need have it
either).
---