Author: dkulp
Date: Thu Mar 11 17:34:14 2010
New Revision: 921955
URL: http://svn.apache.org/viewvc?rev=921955&view=rev
Log:
fix line length
Modified:
cxf/trunk/common/common/src/main/java/org/apache/cxf/resource/URIResolver.java
Modified:
cxf/trunk/common/common/src/main/java/org/apache/cxf/resource/URIResolver.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/common/common/src/main/java/org/apache/cxf/resource/URIResolver.java?rev=921955&r1=921954&r2=921955&view=diff
==============================================================================
---
cxf/trunk/common/common/src/main/java/org/apache/cxf/resource/URIResolver.java
(original)
+++
cxf/trunk/common/common/src/main/java/org/apache/cxf/resource/URIResolver.java
Thu Mar 11 17:34:14 2010
@@ -291,8 +291,9 @@ public class URIResolver {
try {
uri = url.toURI();
} catch (URISyntaxException e) {
- // yep, some versions of the JDK can't handle spaces when
URL.toURI() is called, and lots of people
- // on windows have their maven repositories at C:/Documents
and Settings/<userid>/.m2/repository
+ // yep, some versions of the JDK can't handle spaces when
URL.toURI() is called,
+ // and lots of people on windows have their maven repositories
at
+ // C:/Documents and Settings/<userid>/.m2/repository
// re:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6506304
if (url.toString().contains(" ")) {
url = new URL(url.toString().replace(" ", "%20"));