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: [email protected]
For additional commands, e-mail: [email protected]