Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Ticket #575 (closed defect: fixed)

Opened 17 years ago

Last modified 17 years ago

tango.text.Properties

Reported by: rracaru Assigned to: kris
Priority: major Milestone: 0.99.1 RC4
Component: Tango Version: trunk
Keywords: tango.text.Properties Cc:

Description

tango.text.Properties (tango 0.99)

void save (FilePath? path, T[][T[]] properties);

Save function doesn't really work as "static IBuffer save (IBuffer emit, T[][T[]] properties)" doesn't emit the value part from the hashmap only the keys are emitted. the culprit is on line 127: "emit (key) (equals) (NL);" which should be:

"emit (key) (equals) (value) (NL);"

Change History

08/16/07 16:02:22 changed by kris

  • status changed from new to closed.
  • version changed from 0.99 RC3 Xammy to trunk.
  • resolution set to fixed.

fixed in [2489]

thx!