Commit c2bd01a7 by andrewlewis Committed by Oliver Woodman

Removed unused parameter.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=121102072
parent f0e6fff0
...@@ -378,7 +378,7 @@ public final class Eia608Parser implements ...@@ -378,7 +378,7 @@ public final class Eia608Parser implements
} }
private boolean handleCtrl(byte cc1, byte cc2) { private boolean handleCtrl(byte cc1, byte cc2) {
boolean isRepeatableControl = isRepeatable(cc1, cc2); boolean isRepeatableControl = isRepeatable(cc1);
if (isRepeatableControl && repeatableControlSet if (isRepeatableControl && repeatableControlSet
&& repeatableControlCc1 == cc1 && repeatableControlCc1 == cc1
&& repeatableControlCc2 == cc2) { && repeatableControlCc2 == cc2) {
...@@ -533,7 +533,7 @@ public final class Eia608Parser implements ...@@ -533,7 +533,7 @@ public final class Eia608Parser implements
return (cc1 >= 0x10 && cc1 <= 0x1F) && (cc2 >= 0x40 && cc2 <= 0x7F); 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; return cc1 >= 0x10 && cc1 <= 0x1F;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment