http api: fix spelling of submit

This commit is contained in:
Adam
2017-04-14 21:42:53 -04:00
parent c412ab1764
commit 4157fef61e
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ public class XteaClient
private final Gson gson = new Gson();
public void submut(int revision, int region, int[] keys) throws URISyntaxException, UnsupportedEncodingException, IOException
public void submit(int revision, int region, int[] keys) throws URISyntaxException, UnsupportedEncodingException, IOException
{
URIBuilder builder = new URIBuilder(URL);

View File

@@ -88,7 +88,7 @@ public class Xtea extends Plugin
{
try
{
xteaClient.submut(revision, region, keys);
xteaClient.submit(revision, region, keys);
}
catch (URISyntaxException | IOException ex)
{