Avoid using java 1.5 methods.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@803035 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/Pojoization.java b/ipojo/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/Pojoization.java
index ec4d04e..cc7dcbc 100644
--- a/ipojo/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/Pojoization.java
+++ b/ipojo/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/Pojoization.java
@@ -605,7 +605,7 @@
     private String computeRelativePath(String absolutePath) {
         String root = m_dir.getAbsolutePath();
         String path = absolutePath.substring(root.length() + 1);
-        return path.replace("\\", "/"); // To support Windows systems, the \ are replaced by /
+        return path.replace('\\', '/'); // To support Windows systems, the \ are replaced by /
     }
 
     /**