It is incompatible with java property.
Status: Beta
Brought to you by:
davoli
When saving properties to a stream or loading them
from a stream, the ISO 8859-1 character encoding is
used. For characters that cannot be directly
represented in this encoding, Unicode escapes are
used; however, only a single 'u' character is allowed in
an escape sequence. The native2ascii tool can be used
to convert property files to and from other character
encodings.
=================================
So I have been chaged the file...
In this version. changed comment method...
# -> Comments...
! -> Disabled properties.
Please check this file...
Chaged file refer to this java.util.Properties.java
Logged In: YES
user_id=491419
This is correct..
Right now the plugin dislikes
* disabled properties starting with '!'
* Huge comment blocks
These are several lines all starting with "##" to denote that it
is a information block but is not to be regarded as a comment
for the first following property
E.g.
##THIS IS A INFORMATION BLOCK
##Consisting of several lines
##BUT not regarded as comment for property 'first.property'
first.property=0
#this is a disabled property
!my.disabled.property=1
#this is a enabled property
my.enabled.property=2
##THIS IS A INFORMATION BLOCK
##Consisting of several lines
##BUT not regarded as comment for property
#this is the real comment for propery
second.property=3