Unnecessecary semicolons

This commit is contained in:
Patric Karlström 2021-01-13 15:37:08 +01:00
parent 5879cbd3db
commit 2e026a6920
3 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ public class TwitterRequestTokenTask extends AsyncTask<Void, Void, String> {
OAuthParameters oauthParams = new OAuthParameters();
oauthParams.callback = "https://lbry.tv";
oauthParams.consumerKey = new String(
Base64.decode(consumerKey, Base64.NO_WRAP), StandardCharsets.UTF_8.name());;
Base64.decode(consumerKey, Base64.NO_WRAP), StandardCharsets.UTF_8.name());
oauthParams.signatureMethod = "HMAC-SHA-1";
oauthParams.signer = signer;
oauthParams.computeNonce();

View file

@ -2347,7 +2347,7 @@ public class FileViewFragment extends BaseFragment implements
private void resolveCommentPosters() {
if (commentListAdapter != null) {
long st = System.currentTimeMillis();;
long st = System.currentTimeMillis();
List<String> urlsToResolve = new ArrayList<>(commentListAdapter.getClaimUrlsToResolve());
if (urlsToResolve.size() > 0) {
ResolveTask task = new ResolveTask(urlsToResolve, Lbry.LBRY_TV_CONNECTION_STRING, null, new ClaimListResultHandler() {

View file

@ -147,7 +147,7 @@ public class EmailVerificationFragment extends Fragment {
if (view != null && error != null) {
Snackbar.make(getView(), error.getMessage(), Snackbar.LENGTH_LONG).
setBackgroundTint(Color.RED).setTextColor(Color.WHITE).show();
};
}
Helper.setViewVisibility(buttonContinue, View.VISIBLE);
}
});