Fixing squid:UselessParenthesesCheck - Useless parentheses around expressions should be removed to prevent any misunderstanding.

This commit is contained in:
Faisal Hameed 2016-03-10 14:41:12 +05:00
parent 35e11e43de
commit 805f046696
3 changed files with 7 additions and 7 deletions

View File

@ -564,9 +564,9 @@ public class YoutubeStreamExtractor extends StreamExtractor {
}
}
int seconds = (secondsString.isEmpty() ? 0 : Integer.parseInt(secondsString));
int minutes = (minutesString.isEmpty() ? 0 : Integer.parseInt(minutesString));
int hours = (hoursString.isEmpty() ? 0 : Integer.parseInt(hoursString));
int seconds = secondsString.isEmpty() ? 0 : Integer.parseInt(secondsString);
int minutes = minutesString.isEmpty() ? 0 : Integer.parseInt(minutesString);
int hours = hoursString.isEmpty() ? 0 : Integer.parseInt(hoursString);
//don't trust BODMAS!
int ret = seconds + (60 * minutes) + (3600 * hours);
@ -794,7 +794,7 @@ public class YoutubeStreamExtractor extends StreamExtractor {
} finally {
Context.exit();
}
return (result == null ? "" : result.toString());
return result == null ? "" : result.toString();
}
private String findErrorReason(Document doc) {

View File

@ -157,7 +157,7 @@ public class BackgroundPlayer extends Service /*implements MediaPlayer.OnPrepare
e.printStackTrace();
}
WifiManager wifiMgr = ((WifiManager)getSystemService(Context.WIFI_SERVICE));
WifiManager wifiMgr = (WifiManager)getSystemService(Context.WIFI_SERVICE);
wifiLock = wifiMgr.createWifiLock(WifiManager.WIFI_MODE_FULL, TAG);
//listen for end of video

View File

@ -327,7 +327,7 @@ public class PlayVideoActivity extends AppCompatActivity {
int realHeight = realDisplayMetrics.heightPixels;
int displayHeight = displayMetrics.heightPixels;
return (realHeight - displayHeight);
return realHeight - displayHeight;
} else {
return 50;
}
@ -344,7 +344,7 @@ public class PlayVideoActivity extends AppCompatActivity {
int realWidth = realDisplayMetrics.widthPixels;
int displayWidth = displayMetrics.widthPixels;
return (realWidth - displayWidth);
return realWidth - displayWidth;
} else {
return 50;
}