global: Small cleanups

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2018-06-25 16:02:30 +02:00
parent 99cf2152c4
commit e1a66d5766
3 changed files with 6 additions and 7 deletions

View File

@ -27,7 +27,7 @@ public final class SharedLibraryLoader {
try {
System.loadLibrary(libName);
return;
} catch (UnsatisfiedLinkError e) {
} catch (final UnsatisfiedLinkError e) {
Log.d(TAG, "Failed to load library normally, so attempting to extract from apk", e);
noAbiException = e;
}
@ -59,7 +59,7 @@ public final class SharedLibraryLoader {
}
System.load(f.getAbsolutePath());
return;
} catch (Exception e) {
} catch (final Exception e) {
Log.d(TAG, "Failed to load library apk:/" + libZipPath, e);
noAbiException = e;
} finally {

View File

@ -466,7 +466,7 @@ public class FloatingActionsMenu extends ViewGroup {
}
@Override
public void setEnabled(boolean enabled) {
public void setEnabled(final boolean enabled) {
super.setEnabled(enabled);
mAddButton.setEnabled(enabled);

View File

@ -13,11 +13,11 @@ import android.view.TouchDelegate;
import android.view.View;
import java.util.ArrayList;
import java.util.List;
import java.util.Collection;
public class TouchDelegateGroup extends TouchDelegate {
private static final Rect USELESS_HACKY_RECT = new Rect();
private final List<TouchDelegate> mTouchDelegates = new ArrayList<>();
private final Collection<TouchDelegate> mTouchDelegates = new ArrayList<>();
private TouchDelegate mCurrentTouchDelegate;
private boolean mEnabled;
@ -49,8 +49,7 @@ public class TouchDelegateGroup extends TouchDelegate {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
for (int i = 0; i < mTouchDelegates.size(); i++) {
final TouchDelegate touchDelegate = mTouchDelegates.get(i);
for (final TouchDelegate touchDelegate : mTouchDelegates) {
if (touchDelegate.onTouchEvent(event)) {
mCurrentTouchDelegate = touchDelegate;
return true;