Access to enclosing constructors is emulated by a synthetic accessor methods. Increasing its visibility will improve your performance (Eclipse compiler).

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@432025 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2006-08-16 20:36:35 +00:00
parent eb68acff59
commit 0e2905ef36
1 changed files with 5 additions and 5 deletions

View File

@ -1993,7 +1993,7 @@ public abstract class ToStringStyle implements Serializable {
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
private DefaultToStringStyle() { protected DefaultToStringStyle() {
super(); super();
} }
@ -2026,7 +2026,7 @@ public abstract class ToStringStyle implements Serializable {
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
private NoFieldNameToStringStyle() { protected NoFieldNameToStringStyle() {
super(); super();
this.setUseFieldNames(false); this.setUseFieldNames(false);
} }
@ -2060,7 +2060,7 @@ public abstract class ToStringStyle implements Serializable {
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
private ShortPrefixToStringStyle() { protected ShortPrefixToStringStyle() {
super(); super();
this.setUseShortClassName(true); this.setUseShortClassName(true);
this.setUseIdentityHashCode(false); this.setUseIdentityHashCode(false);
@ -2092,7 +2092,7 @@ public abstract class ToStringStyle implements Serializable {
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
private SimpleToStringStyle() { protected SimpleToStringStyle() {
super(); super();
this.setUseClassName(false); this.setUseClassName(false);
this.setUseIdentityHashCode(false); this.setUseIdentityHashCode(false);
@ -2128,7 +2128,7 @@ public abstract class ToStringStyle implements Serializable {
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
private MultiLineToStringStyle() { protected MultiLineToStringStyle() {
super(); super();
this.setContentStart("["); this.setContentStart("[");
this.setFieldSeparator(SystemUtils.LINE_SEPARATOR + " "); this.setFieldSeparator(SystemUtils.LINE_SEPARATOR + " ");