Index: trunk/src/org/openstreetmap/josm/gui/autofilter/AutoFilterManager.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/autofilter/AutoFilterManager.java	(revision 19605)
+++ trunk/src/org/openstreetmap/josm/gui/autofilter/AutoFilterManager.java	(revision 19615)
@@ -469,4 +469,5 @@
      * Returns the currently selected auto filters, if any.
      * @return the currently selected auto filters. Can be empty.
+     * @since 19592
      */
     public synchronized List<AutoFilter> getCurrentAutoFilters() {
@@ -477,4 +478,5 @@
      * Returns a combination of all {@link #getCurrentAutoFilters()}, if any.
      * @return a single combined filter, or null
+     * @since 19592
      */
     public Filter getCurrentCombinedFilter() {
@@ -500,4 +502,9 @@
     }
 
+    /**
+     * Adds another auto filter to current list
+     * @param autoFilter the filter to add to current list
+     * @since 19592
+     */
     public synchronized void addCurrentAutoFilter(AutoFilter autoFilter) {
         if (!currentAutoFilters.contains(autoFilter)) {
@@ -507,4 +514,9 @@
     }
 
+    /**
+     * Remove a current auto filter
+     * @param autoFilter the filter to remove from current list
+     * @since 19592
+     */
     public synchronized void removeCurrentAutoFilter(AutoFilter autoFilter) {
         if (currentAutoFilters.contains(autoFilter)) {
