replaced commented code with 'if (false)' block
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@893395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3bbde4880c
commit
56c40e3a0f
@ -214,9 +214,9 @@ public class DateUtil {
|
||||
}
|
||||
|
||||
String fs = formatString;
|
||||
/*
|
||||
Normalize the format string. The code below is equivalent
|
||||
to the following consecutive regexp replacements:
|
||||
if (false) {
|
||||
// Normalize the format string. The code below is equivalent
|
||||
// to the following consecutive regexp replacements:
|
||||
|
||||
// Translate \- into just -, before matching
|
||||
fs = fs.replaceAll("\\\\-","-");
|
||||
@ -231,10 +231,10 @@ public class DateUtil {
|
||||
// switching stuff, which we can ignore
|
||||
fs = fs.replaceAll(";@", "");
|
||||
|
||||
The code above was reworked as suggested in bug 48425:
|
||||
simple loop is more efficient than consecutive regexp replacements.
|
||||
*/
|
||||
StringBuilder sb = new StringBuilder();
|
||||
// The code above was reworked as suggested in bug 48425:
|
||||
// simple loop is more efficient than consecutive regexp replacements.
|
||||
}
|
||||
StringBuilder sb = new StringBuilder(fs.length());
|
||||
for (int i = 0; i < fs.length(); i++) {
|
||||
char c = fs.charAt(i);
|
||||
if (i < fs.length() - 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user