Using the FW Init to reload changes to code

I am having an issue at the moment that I think is related to a cache issue, I made a change to a line of that looks like this in the interceptor

Application.appService.deleteStuff();

And that function is

public boolean function deleteStuff(required string filePath) {

if(checkSettingsFileExists(instance.settingsFileName)) {

fileDelete(instance.settingsFileName);

}

}

Now as you would expect this will throw an error, so I removed the arguments in the deleteStuff method, and ran the application with fwreinit=1 and the same error is still occurring. This leaves me to believe that the framework is pulling up the cached version.

Should this not happen? Should the cache be ignored here?

Regards,

Andrew Scott

http://www.andyscott.id.au/