Bug fixes

This commit is contained in:
Ziver Koc 2015-04-09 21:14:25 +00:00
parent c22c866000
commit a199165756
10 changed files with 171 additions and 55 deletions

View file

@ -30,17 +30,17 @@ import java.io.File;
public class OsalWindowsImpl extends OSAbstractionLayer {
@Override
public OSType getOSType() {
return null; //To change body of implemented methods use File | Settings | File Templates.
return null;
}
@Override
public String getOSName() {
return null; //To change body of implemented methods use File | Settings | File Templates.
return null;
}
@Override
public String getOSVersion() {
return null; //To change body of implemented methods use File | Settings | File Templates.
return null;
}
@Override
@ -55,16 +55,21 @@ public class OsalWindowsImpl extends OSAbstractionLayer {
@Override
public String getUsername() {
return null; //To change body of implemented methods use File | Settings | File Templates.
return null;
}
@Override
public File getUserConfigPath() {
return null; //To change body of implemented methods use File | Settings | File Templates.
return null;
}
@Override
public File getGlobalConfigPath() {
return null; //To change body of implemented methods use File | Settings | File Templates.
return null;
}
@Override
public HardwareAbstractionLayer getHAL() {
return null;
}
}