Skip to content

Commit afc5768

Browse files
committed
Remove unnecessary check for SDK 16
1 parent 29f5c2d commit afc5768

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

app/src/main/java/protect/videoeditor/activity/MainActivity.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,6 @@ protected void onCreate(Bundle savedInstanceState)
8585
tvRight = findViewById(R.id.tvRight);
8686

8787
final TextView extractAudio = findViewById(R.id.extractAudio);
88-
if (Build.VERSION.SDK_INT == 16)
89-
{
90-
extractAudio.setVisibility(View.GONE);
91-
}
92-
else
93-
{
94-
extractAudio.setVisibility(View.VISIBLE);
95-
}
9688
videoView = findViewById(R.id.videoView);
9789
rangeSeekBar = findViewById(R.id.rangeSeekBar);
9890
mainlayout = findViewById(R.id.mainlayout);

0 commit comments

Comments
 (0)