So I have a .properties file in java. One of the properties hold the value for a certain path which happened to change.
What I did is edit the .properties file to change the value to the new path. However it seems that I am always reading the old value.
What could be the reason for that ?
EDIT This is how I read the properties file
propertiesFilePath = "configs/index.properties";
Properties properties = new Properties();
InputStream input = new FileInputStream(propertiesFilePath);
properties.load(input);