You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Freeman Fang (JIRA)" <ji...@apache.org> on 2014/03/13 08:18:43 UTC

[jira] [Created] (FELIX-4457) org.apache.felix.utils.properties will save key=value on top of comments if the original properties file are all comments

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)