svn commit: r1682916 - /commons/proper/pool/trunk/src/changes/changes.xml

2015-06-01 Thread kkolinko
Author: kkolinko
Date: Mon Jun  1 14:38:33 2015
New Revision: 1682916

URL: http://svn.apache.org/r1682916
Log:
Fix typo in description of POOL-297 fix in Commons Pool 2.4.1 changelog.

Modified:
commons/proper/pool/trunk/src/changes/changes.xml

Modified: commons/proper/pool/trunk/src/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/changes/changes.xml?rev=1682916&r1=1682915&r2=1682916&view=diff
==
--- commons/proper/pool/trunk/src/changes/changes.xml (original)
+++ commons/proper/pool/trunk/src/changes/changes.xml Mon Jun  1 14:38:33 2015
@@ -50,7 +50,7 @@ The  type attribute can be add,u
 than the build configuration, the source distribution for version 2.4.1 is 
identical
 to version 2.4.">
 
-  Reverted coburta plugin update that caused binary jar corruption.
+  Reverted cobertura plugin update that caused binary jar corruption.
 
   
   

svn commit: r1725959 - in /commons/proper/pool/trunk/src: main/java/org/apache/commons/pool2/BaseObject.java test/java/org/apache/commons/pool2/impl/TestBaseGenericObjectPool.java test/java/org/apache

2016-01-21 Thread kkolinko
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