Set SIMPLEST_FORMAT to "%s", which is simpler that "%1$s"

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1096573 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2011-04-25 19:41:08 +00:00
parent 28feb02b2e
commit 8691eb0328
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ import org.apache.commons.lang3.Validate;
*/
public class FormattableUtils {
private static final String SIMPLEST_FORMAT = "%1$s";
private static final String SIMPLEST_FORMAT = "%s";
/**
* <p>{@link FormattableUtils} instances should NOT be constructed in