
|
If you were logged in you would be able to see more operations.
|
|
|
RHQ Project
Created: 19/Sep/08 08:47 PM
Updated: 13/Oct/08 03:37 PM
|
|
| Component/s: |
Plugin Container
|
| Affects Version/s: |
1.0.1
|
| Fix Version/s: |
None
|
|
|
Time Tracking:
|
|
Original Estimate:
|
1 hour
|
|
|
Remaining Estimate:
|
1 hour
|
|
|
Time Spent:
|
Not Specified
|
|
|
|
| Date of First Response: |
22/Sep/08 05:55 AM
|
| VCS Revision: |
1,563
|
|
This is because ResponseTimeConfiguration.getTransforms() uses StringTokenizer, which does not consider empty strings to be tokens. For example "|foo||" returns only one token
"foo"
rather than two:
"foo" and ""
as we require. The code should be refactored to use String.split(), which does not have this limitation, instead.
|
|
Description
|
This is because ResponseTimeConfiguration.getTransforms() uses StringTokenizer, which does not consider empty strings to be tokens. For example "|foo||" returns only one token
"foo"
rather than two:
"foo" and ""
as we require. The code should be refactored to use String.split(), which does not have this limitation, instead.
|
Show » |
|
Ian, is this fix required to solve case 219335? If so, then IMHO this needs to stay a blocker