Merge pull request #529 from runelite/master

bringup
This commit is contained in:
Tyler Bochard
2019-06-10 02:24:56 -04:00
committed by GitHub
12 changed files with 73 additions and 36 deletions

View File

@@ -30,7 +30,7 @@ import java.util.Properties;
public class CacheProperties
{
private static Properties getProperies() throws IOException
private static Properties getProperties() throws IOException
{
Properties properties = new Properties();
InputStream resourceAsStream = StoreLocation.class.getResourceAsStream("/cache.properties");
@@ -40,11 +40,11 @@ public class CacheProperties
public static int getRsVersion() throws IOException
{
return Integer.parseInt(getProperies().getProperty("rs.version"));
return Integer.parseInt(getProperties().getProperty("rs.version"));
}
public static int getCacheVersion() throws IOException
{
return Integer.parseInt(getProperies().getProperty("cache.version"));
return Integer.parseInt(getProperties().getProperty("cache.version"));
}
}

View File

@@ -165,7 +165,7 @@ public class MapDumperTest
@Test
@Ignore
public void dunpJson() throws IOException
public void dumpJson() throws IOException
{
File base = StoreLocation.LOCATION,
outDir = folder.newFolder();