mirror of https://github.com/encounter/SDL.git
Fixed Java string comparison with ""
This commit is contained in:
parent
fa5db3a931
commit
6d23ea4bf0
|
@ -544,7 +544,6 @@ public class SDLActivity extends Activity {
|
|||
{
|
||||
int orientation = -1;
|
||||
|
||||
if (hint != "") {
|
||||
if (hint.contains("LandscapeRight") && hint.contains("LandscapeLeft")) {
|
||||
orientation = ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE;
|
||||
} else if (hint.contains("LandscapeRight")) {
|
||||
|
@ -558,7 +557,6 @@ public class SDLActivity extends Activity {
|
|||
} else if (hint.contains("PortraitUpsideDown")) {
|
||||
orientation = ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT;
|
||||
}
|
||||
}
|
||||
|
||||
/* no valid hint */
|
||||
if (orientation == -1) {
|
||||
|
|
|
@ -265,7 +265,7 @@ class SDLJoystickHandler_API16 extends SDLJoystickHandler_API12 {
|
|||
public String getJoystickDescriptor(InputDevice joystickDevice) {
|
||||
String desc = joystickDevice.getDescriptor();
|
||||
|
||||
if (desc != null && desc != "") {
|
||||
if (desc != null && !desc.isEmpty()) {
|
||||
return desc;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue