mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Refactor to suppress null worning
Change-Id: I4b4dc6f86d659491d8b9a74ed120092eab964345
This commit is contained in:
parent
907371b54f
commit
370674422a
@ -119,11 +119,6 @@ public class ProximityInfo {
|
||||
sweetSpotCenterYs = new float[keyCount];
|
||||
sweetSpotRadii = new float[keyCount];
|
||||
calculateSweetSpotParams = true;
|
||||
} else {
|
||||
sweetSpotCenterXs = sweetSpotCenterYs = sweetSpotRadii = null;
|
||||
calculateSweetSpotParams = false;
|
||||
}
|
||||
|
||||
int i = 0;
|
||||
for (final Key key : keys) {
|
||||
keyXCoordinates[i] = key.mX;
|
||||
@ -150,6 +145,10 @@ public class ProximityInfo {
|
||||
}
|
||||
i++;
|
||||
}
|
||||
} else {
|
||||
sweetSpotCenterXs = sweetSpotCenterYs = sweetSpotRadii = null;
|
||||
calculateSweetSpotParams = false;
|
||||
}
|
||||
|
||||
mNativeProximityInfo = setProximityInfoNative(MAX_PROXIMITY_CHARS_SIZE,
|
||||
keyboardWidth, keyboardHeight, mGridWidth, mGridHeight, proximityCharsArray,
|
||||
|
Loading…
x
Reference in New Issue
Block a user