commit | c674711324d7d892482d9e42ce664ba55e0b54e2 | [log] [tgz] |
---|---|---|
author | Stuart McCulloch <mcculls@apache.org> | Sun Oct 21 08:05:42 2007 +0000 |
committer | Stuart McCulloch <mcculls@apache.org> | Sun Oct 21 08:05:42 2007 +0000 |
tree | f450e706d99448fe6003a6eddc389c6cd6fb48ec | |
parent | fd6646e867b7b29758496b6e0f0254244b09e799 [diff] |
FELIX-403: be consistent with other code and replace line-break with empty string git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@586864 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java b/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java index a93b66d..7226e4f 100644 --- a/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java +++ b/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
@@ -478,7 +478,7 @@ if (value instanceof Collection && ((Collection) value).isEmpty()) return; - properties.put(key, value.toString().replaceAll("[\r\n]", " ")); + properties.put(key, value.toString().replaceAll("[\r\n]", "")); } /**