Removed unused parameter.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=121102072
This commit is contained in:
andrewlewis 2016-04-29 03:06:12 -07:00 committed by Oliver Woodman
parent f0e6fff011
commit c2bd01a756

View File

@ -378,7 +378,7 @@ public final class Eia608Parser implements
}
private boolean handleCtrl(byte cc1, byte cc2) {
boolean isRepeatableControl = isRepeatable(cc1, cc2);
boolean isRepeatableControl = isRepeatable(cc1);
if (isRepeatableControl && repeatableControlSet
&& repeatableControlCc1 == cc1
&& repeatableControlCc2 == cc2) {
@ -533,7 +533,7 @@ public final class Eia608Parser implements
return (cc1 >= 0x10 && cc1 <= 0x1F) && (cc2 >= 0x40 && cc2 <= 0x7F);
}
private static boolean isRepeatable(byte cc1, byte cc2) {
private static boolean isRepeatable(byte cc1) {
return cc1 >= 0x10 && cc1 <= 0x1F;
}