You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jakarta.apache.org by se...@apache.org on 2010/11/20 21:34:22 UTC

svn commit: r1037322 - /jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/URLRewritingModifier.java

Author: sebb
Date: Sat Nov 20 20:34:22 2010
New Revision: 1037322

URL: http://svn.apache.org/viewvc?rev=1037322&view=rev
Log:
Rewrap badly wrapped comments

Modified:
    jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/URLRewritingModifier.java

Modified: jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/URLRewritingModifier.java
URL: http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/URLRewritingModifier.java?rev=1037322&r1=1037321&r2=1037322&view=diff
==============================================================================
--- jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/URLRewritingModifier.java (original)
+++ jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/URLRewritingModifier.java Sat Nov 20 20:34:22 2010
@@ -85,22 +85,19 @@ public class URLRewritingModifier extend
                 MatchResult result = matcher.getMatch();
                 value = result.group(1);
             }
-        } else if (isPathExtension() && isPathExtensionNoEquals()) // && !
-                                                                    // isPathExtensionNoQuestionmark
+        } else if (isPathExtension() && isPathExtensionNoEquals()) // && !isPathExtensionNoQuestionmark()
         {
             if (matcher.contains(text, pathExtensionNoEqualsQuestionmarkRegexp)) {
                 MatchResult result = matcher.getMatch();
                 value = result.group(1);
             }
-        } else if (isPathExtension() && isPathExtensionNoQuestionmark()) // && !
-                                                                            // isPathExtensionNoEquals
+        } else if (isPathExtension() && isPathExtensionNoQuestionmark()) // && !isPathExtensionNoEquals()
         {
             if (matcher.contains(text, pathExtensionEqualsNoQuestionmarkRegexp)) {
                 MatchResult result = matcher.getMatch();
                 value = result.group(1);
             }
-        } else if (isPathExtension()) // && ! isPathExtensionNoEquals && !
-                                        // isPathExtensionNoQuestionmark
+        } else if (isPathExtension()) // && !isPathExtensionNoEquals() && !isPathExtensionNoQuestionmark()
         {
             if (matcher.contains(text, pathExtensionEqualsQuestionmarkRegexp)) {
                 MatchResult result = matcher.getMatch();



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@jakarta.apache.org
For additional commands, e-mail: notifications-help@jakarta.apache.org