Author: mcculls
Date: Sun Oct 21 01:05:42 2007
New Revision: 586864
URL: http://svn.apache.org/viewvc?rev=586864&view=rev
Log:
FELIX-403: be consistent with other code and replace line-break with empty
string
Modified:
felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
Modified:
felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
URL:
http://svn.apache.org/viewvc/felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java?rev=586864&r1=586863&r2=586864&view=diff
==============================================================================
---
felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
(original)
+++
felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
Sun Oct 21 01:05:42 2007
@@ -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]", ""));
}
/**