Author: kkolinko Date: Thu Jan 21 14:22:28 2016 New Revision: 1725959 URL: http://svn.apache.org/viewvc?rev=1725959&view=rev Log: Set svn:eol-style = native on Java files. No functional change.
Noted when running checks on the copy of Apache Commons Pool in Apache Tomcat. Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/BaseObject.java (contents, props changed) commons/proper/pool/trunk/src/test/java/org/apache/commons/pool2/impl/TestBaseGenericObjectPool.java (props changed) commons/proper/pool/trunk/src/test/java/org/apache/commons/pool2/impl/TestDefaultPooledObject.java (props changed) Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/BaseObject.java URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/BaseObject.java?rev=1725959&r1=1725958&r2=1725959&view=diff ============================================================================== --- commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/BaseObject.java (original) +++ commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/BaseObject.java Thu Jan 21 14:22:28 2016 @@ -1,40 +1,40 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.commons.pool2; - -/** - * A base class for common functionality. - * - * @since 2.4.3 - */ -public abstract class BaseObject { - - @Override - public String toString() { - StringBuilder builder = new StringBuilder(); - builder.append(getClass().getSimpleName()); - builder.append(" ["); - toStringAppendFields(builder); - builder.append("]"); - return builder.toString(); - } - - protected void toStringAppendFields(StringBuilder builder) { - // do nothing by default, needed for b/w compatibility. - } - -} +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.commons.pool2; + +/** + * A base class for common functionality. + * + * @since 2.4.3 + */ +public abstract class BaseObject { + + @Override + public String toString() { + StringBuilder builder = new StringBuilder(); + builder.append(getClass().getSimpleName()); + builder.append(" ["); + toStringAppendFields(builder); + builder.append("]"); + return builder.toString(); + } + + protected void toStringAppendFields(StringBuilder builder) { + // do nothing by default, needed for b/w compatibility. + } + +} Propchange: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/BaseObject.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/pool/trunk/src/test/java/org/apache/commons/pool2/impl/TestBaseGenericObjectPool.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/pool/trunk/src/test/java/org/apache/commons/pool2/impl/TestDefaultPooledObject.java ------------------------------------------------------------------------------ svn:eol-style = native