Allow rs.version to be a double
This allows sub-versions of the same RS revision
This commit is contained in:
@@ -40,7 +40,7 @@ public class CacheProperties
|
||||
|
||||
public static int getRsVersion() throws IOException
|
||||
{
|
||||
return Integer.parseInt(getProperties().getProperty("rs.version"));
|
||||
return (int) Double.parseDouble(getProperties().getProperty("rs.version"));
|
||||
}
|
||||
|
||||
public static int getCacheVersion() throws IOException
|
||||
|
||||
Reference in New Issue
Block a user