Author: andre
Date: 2009-09-13 00:52:52 +0200 (Sun, 13 Sep 2009)
New Revision: 38571

Modified:
   
mmbase/trunk/applications/media/src/main/java/org/mmbase/applications/media/filters/AvailableFilter.java
Log:
added a comment about maybe testing for unsupported sources in this filter



Modified: 
mmbase/trunk/applications/media/src/main/java/org/mmbase/applications/media/filters/AvailableFilter.java
===================================================================
--- 
mmbase/trunk/applications/media/src/main/java/org/mmbase/applications/media/filters/AvailableFilter.java
    2009-09-12 22:36:02 UTC (rev 38570)
+++ 
mmbase/trunk/applications/media/src/main/java/org/mmbase/applications/media/filters/AvailableFilter.java
    2009-09-12 22:52:52 UTC (rev 38571)
@@ -1,4 +1,4 @@
- /*
+/*
  
 This software is OSI Certified Open Source Software.
 OSI Certified is a certification mark of the Open Source Initiative.
@@ -6,7 +6,7 @@
 The license (Mozilla version 1.0) can be read at the MMBase site.
 See http://www.MMBase.org/license
  
- */
+*/
 
 package org.mmbase.applications.media.filters;
 
@@ -17,7 +17,7 @@
 import java.util.List;
 
 /**
- * This removes all URLComposers wich are not available.
+ * This removes all URLComposers which are not available.
  * @author  Michiel Meeuwissen
  * @version $Id$
  */
@@ -27,6 +27,7 @@
         ListIterator<URLComposer> i = urlcomposers.listIterator();
         while (i.hasNext()) {
             URLComposer uc = i.next();
+            /* TODO: do something here with State SOURCE_UNSUPPORTED ? */
             if (! uc.isAvailable()) {
                 i.remove();
             }

_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to