commit | e99f0d3d60c71fb34dacd8792eab371366421dd4 | [log] [tgz] |
---|---|---|
author | Clement Escoffier <clement@apache.org> | Wed Apr 14 15:25:52 2010 +0000 |
committer | Clement Escoffier <clement@apache.org> | Wed Apr 14 15:25:52 2010 +0000 |
tree | 6b83ad96f30f9cd64762dc1fe237a515e58b5277 | |
parent | 5185b7c5ff3eca8bb39048516eeaf9a167f04908 [diff] |
Release Preparation - Update changelog Cosmetic fix git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@933987 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/online-manipulator/doc/changelog.txt b/ipojo/online-manipulator/doc/changelog.txt index f94141a..a4e730d 100644 --- a/ipojo/online-manipulator/doc/changelog.txt +++ b/ipojo/online-manipulator/doc/changelog.txt
@@ -1,3 +1,10 @@ +Changes from the 1.4.2 to 1.6.0 +------------------------------- +** Improvement + * [FELIX-1427] - Service injection with Smart Proxies + * [FELIX-1906] - Allow calling a method when service properties of an already injected service are modified + + Changes from the 1.4.0 to 1.4.2 ------------------------------- ** Bug
diff --git a/ipojo/online-manipulator/src/main/java/org/apache/felix/ipojo/online/manipulator/IPOJOURLHandler.java b/ipojo/online-manipulator/src/main/java/org/apache/felix/ipojo/online/manipulator/IPOJOURLHandler.java index 14a9d4a..b4a6ae3 100644 --- a/ipojo/online-manipulator/src/main/java/org/apache/felix/ipojo/online/manipulator/IPOJOURLHandler.java +++ b/ipojo/online-manipulator/src/main/java/org/apache/felix/ipojo/online/manipulator/IPOJOURLHandler.java
@@ -165,7 +165,7 @@ } out.deleteOnExit(); // Returns the URL Connection - return out.toURL().openConnection(); + return out.toURI().toURL().openConnection(); }