[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/http ...

Tom Elrod tom.elrod at jboss.com
Thu Feb 15 11:54:08 EST 2007


  User: telrod  
  Date: 07/02/15 11:54:08

  Modified:    src/main/org/jboss/remoting/transport/http  Tag:
                        remoting_2_x HTTPClientInvoker.java
  Log:
  JBREM-702 - allow for empty passwords
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.31.2.2  +6 -6      JBossRemoting/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HTTPClientInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java,v
  retrieving revision 1.31.2.1
  retrieving revision 1.31.2.2
  diff -u -b -r1.31.2.1 -r1.31.2.2
  --- HTTPClientInvoker.java	24 Jan 2007 18:53:41 -0000	1.31.2.1
  +++ HTTPClientInvoker.java	15 Feb 2007 16:54:08 -0000	1.31.2.2
  @@ -594,7 +594,7 @@
         {
            password = (String) metadata.get("http.proxy.password");
         }
  -      if (password == null || password.length() == 0)
  +      if (password == null)
         {
            password = System.getProperty("http.proxy.password");
         }
  @@ -633,7 +633,7 @@
         {
            password = (String) metadata.get("http.basic.password");
         }
  -      if (password == null || password.length() == 0)
  +      if (password == null)
         {
            password = System.getProperty("http.basic.password");
         }
  
  
  



More information about the jboss-cvs-commits mailing list