Freeman Fang created FELIX-4457:
-----------------------------------
Summary: org.apache.felix.utils.properties will save key=value on
top of comments if the original properties file are all comments
Key: FELIX-4457
URL: https://issues.apache.org/jira/browse/FELIX-4457
Project: Felix
Issue Type: Bug
Components: Utils
Reporter: Freeman Fang
for example if the properties file looks like
{code}
#
# just a comment
#
{code}
then if we add a property into this file and save it we get something like
{code}
key1 = value1
#
# just a comment
#
{code}
we should get
{code}
#
# just a comment
#
key1 = value1
{code}
instead
--
This message was sent by Atlassian JIRA
(v6.2#6252)