------------------------------------------------------------
revno: 4499
committer: Morten Olav Hansen <[email protected]>
branch nick: dhis2
timestamp: Fri 2011-09-02 10:18:24 +0200
message:
  removed debug printfs
modified:
  
dhis-2/dhis-web/dhis-web-commons/src/main/java/org/hisp/dhis/security/MappedRedirectStrategy.java


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-commons/src/main/java/org/hisp/dhis/security/MappedRedirectStrategy.java'
--- dhis-2/dhis-web/dhis-web-commons/src/main/java/org/hisp/dhis/security/MappedRedirectStrategy.java	2011-09-02 08:15:40 +0000
+++ dhis-2/dhis-web/dhis-web-commons/src/main/java/org/hisp/dhis/security/MappedRedirectStrategy.java	2011-09-02 08:18:24 +0000
@@ -66,14 +66,11 @@
     public void sendRedirect( HttpServletRequest request, HttpServletResponse response, String url )
         throws IOException
     {
-        System.out.println("Default url " + url);
-        
         for ( String key : redirectMap.keySet() )
         {
             if ( url.indexOf( key ) != -1 )
             {
                 url = url.replaceFirst( key, redirectMap.get( key ) );
-                System.out.println("Rewritten url " + url);
             }
         }
 

_______________________________________________
Mailing list: https://launchpad.net/~dhis2-devs
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp

Reply via email to