From 14172271a39918fc2490b44894951d01c953a2a9 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Fri, 18 Aug 2006 19:31:37 +0000 Subject: [PATCH] Change protected to package scope git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@432694 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/commons/lang/builder/ToStringStyle.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/java/org/apache/commons/lang/builder/ToStringStyle.java b/src/java/org/apache/commons/lang/builder/ToStringStyle.java index 5fe4491b8..7b863ddcf 100644 --- a/src/java/org/apache/commons/lang/builder/ToStringStyle.java +++ b/src/java/org/apache/commons/lang/builder/ToStringStyle.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2005 The Apache Software Foundation. + * Copyright 2002-2006 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1993,7 +1993,7 @@ public abstract class ToStringStyle implements Serializable { * *

Use the static constant rather than instantiating.

*/ - protected DefaultToStringStyle() { + DefaultToStringStyle() { super(); } @@ -2026,7 +2026,7 @@ public abstract class ToStringStyle implements Serializable { * *

Use the static constant rather than instantiating.

*/ - protected NoFieldNameToStringStyle() { + NoFieldNameToStringStyle() { super(); this.setUseFieldNames(false); } @@ -2060,7 +2060,7 @@ public abstract class ToStringStyle implements Serializable { * *

Use the static constant rather than instantiating.

*/ - protected ShortPrefixToStringStyle() { + ShortPrefixToStringStyle() { super(); this.setUseShortClassName(true); this.setUseIdentityHashCode(false); @@ -2092,7 +2092,7 @@ public abstract class ToStringStyle implements Serializable { * *

Use the static constant rather than instantiating.

*/ - protected SimpleToStringStyle() { + SimpleToStringStyle() { super(); this.setUseClassName(false); this.setUseIdentityHashCode(false); @@ -2128,7 +2128,7 @@ public abstract class ToStringStyle implements Serializable { * *

Use the static constant rather than instantiating.

*/ - protected MultiLineToStringStyle() { + MultiLineToStringStyle() { super(); this.setContentStart("["); this.setFieldSeparator(SystemUtils.LINE_SEPARATOR + " ");