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:
parent
eb68acff59
commit
0e2905ef36
|
@ -1993,7 +1993,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
private DefaultToStringStyle() {
|
||||
protected DefaultToStringStyle() {
|
||||
super();
|
||||
}
|
||||
|
||||
|
@ -2026,7 +2026,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
private NoFieldNameToStringStyle() {
|
||||
protected NoFieldNameToStringStyle() {
|
||||
super();
|
||||
this.setUseFieldNames(false);
|
||||
}
|
||||
|
@ -2060,7 +2060,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
private ShortPrefixToStringStyle() {
|
||||
protected ShortPrefixToStringStyle() {
|
||||
super();
|
||||
this.setUseShortClassName(true);
|
||||
this.setUseIdentityHashCode(false);
|
||||
|
@ -2092,7 +2092,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
private SimpleToStringStyle() {
|
||||
protected SimpleToStringStyle() {
|
||||
super();
|
||||
this.setUseClassName(false);
|
||||
this.setUseIdentityHashCode(false);
|
||||
|
@ -2128,7 +2128,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
private MultiLineToStringStyle() {
|
||||
protected MultiLineToStringStyle() {
|
||||
super();
|
||||
this.setContentStart("[");
|
||||
this.setFieldSeparator(SystemUtils.LINE_SEPARATOR + " ");
|
||||
|
|
Loading…
Reference in New Issue