More Filename fun.

This commit is contained in:
Andrew Hennessy 2013-10-01 00:48:35 -04:00
parent 41e125c916
commit 1abdefdc15
2 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ public class NvConnection {
private void startSteamBigPicture() throws XmlPullParserException, IOException
{
NvHttp h = new NvHttp(host, "b0:ee:45:57:5d:5f");
NvHTTP h = new NvHTTP(host, "b0:ee:45:57:5d:5f");
if (!h.getPairState())
{

View File

@ -10,13 +10,13 @@ import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;
public class NvHttp {
public class NvHTTP {
private String host;
private String macAddress;
public static final int PORT = 47989;
public NvHttp(String host, String macAddress)
public NvHTTP(String host, String macAddress)
{
this.host = host;
this.macAddress = macAddress;