in reply to MooseX::Storage JSON load not functioning as expected

The problem is that you've hard coded the creation of a new "batt" instrument in the BUILD method. The object is loaded properly from file1.json and then the BUILD method unceremoniously overwrites it with a newly constructed object with the default value

  • Comment on Re: MooseX::Storage JSON load not functioning as expected

Replies are listed 'Best First'.
Re^2: MooseX::Storage JSON load not functioning as expected
by irishBatman (Novice) on Jul 08, 2013 at 23:17 UTC
    Thanks, I have modified the code to check if the hash elements have been created yet and create them if not. This seems to work.

    I am wondering if there is a cleaner way of creating my object structure in the first place?