Author: scolebourne
Date: Fri Aug 18 12:31:37 2006
New Revision: 432694
URL: http://svn.apache.org/viewvc?rev=432694&view=rev
Log:
Change protected to package scope
Modified:
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringStyle.java
Modified:
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringStyle.java
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringStyle.java?rev=432694&r1=432693&r2=432694&view=diff
==============================================================================
---
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringStyle.java
(original)
+++
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringStyle.java
Fri Aug 18 12:31:37 2006
@@ -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 @@
*
* <p>Use the static constant rather than instantiating.</p>
*/
- protected DefaultToStringStyle() {
+ DefaultToStringStyle() {
super();
}
@@ -2026,7 +2026,7 @@
*
* <p>Use the static constant rather than instantiating.</p>
*/
- protected NoFieldNameToStringStyle() {
+ NoFieldNameToStringStyle() {
super();
this.setUseFieldNames(false);
}
@@ -2060,7 +2060,7 @@
*
* <p>Use the static constant rather than instantiating.</p>
*/
- protected ShortPrefixToStringStyle() {
+ ShortPrefixToStringStyle() {
super();
this.setUseShortClassName(true);
this.setUseIdentityHashCode(false);
@@ -2092,7 +2092,7 @@
*
* <p>Use the static constant rather than instantiating.</p>
*/
- protected SimpleToStringStyle() {
+ SimpleToStringStyle() {
super();
this.setUseClassName(false);
this.setUseIdentityHashCode(false);
@@ -2128,7 +2128,7 @@
*
* <p>Use the static constant rather than instantiating.</p>
*/
- protected MultiLineToStringStyle() {
+ MultiLineToStringStyle() {
super();
this.setContentStart("[");
this.setFieldSeparator(SystemUtils.LINE_SEPARATOR + " ");
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]