Revision: 571
          http://svn.sourceforge.net/stripes/?rev=571&view=rev
Author:   bengunter
Date:     2007-06-11 05:49:55 -0700 (Mon, 11 Jun 2007)

Log Message:
-----------
replaced tabs that were accidentally used for indentation with spaces

Modified Paths:
--------------
    trunk/stripes/src/net/sourceforge/stripes/util/UrlBuilder.java

Modified: trunk/stripes/src/net/sourceforge/stripes/util/UrlBuilder.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/util/UrlBuilder.java      
2007-06-11 12:47:19 UTC (rev 570)
+++ trunk/stripes/src/net/sourceforge/stripes/util/UrlBuilder.java      
2007-06-11 12:49:55 UTC (rev 571)
@@ -41,7 +41,7 @@
  * @since Stripes 1.1.2
  */
 public class UrlBuilder {
-       private Locale locale;
+    private Locale locale;
     private StringBuilder url = new StringBuilder(256);
     boolean seenQuestionMark = false;
     private String parameterSeparator;
@@ -56,12 +56,12 @@
      * @param url the path part of the URL
      * @param isForPage true if the URL is to be embedded in a page (e.g. in 
an anchor of img
      *        tag), false if for some other purpose.
-        * @deprecated As of Stripes 1.5, this constructor has been replaced by
-        *             [EMAIL PROTECTED] #UrlBuilder(Locale, String, boolean)}.
-        */
+     * @deprecated As of Stripes 1.5, this constructor has been replaced by
+     *             [EMAIL PROTECTED] #UrlBuilder(Locale, String, boolean)}.
+     */
     @Deprecated
     public UrlBuilder(String url, boolean isForPage) {
-       this(Locale.getDefault(), url, isForPage);
+        this(Locale.getDefault(), url, isForPage);
     }
 
     /**
@@ -76,7 +76,7 @@
      *        tag), false if for some other purpose.
      */
     public UrlBuilder(Locale locale, String url, boolean isForPage) {
-       this.locale = locale;
+        this.locale = locale;
         if (url != null) {
             // Check to see if there is an embedded anchor, and strip it out 
for later
             int index = url.indexOf('#');


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to