Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
e01ef47d
authored
Dec 10, 2021
by
huangdarwin
Committed by
Ian Baker
Dec 13, 2021
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Use static asserts more often.
PiperOrigin-RevId: 415529751
parent
7d93f2d4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
library/transformer/src/androidTest/java/com/google/android/exoplayer2/transformer/mh/AndroidTestUtil.java
library/transformer/src/androidTest/java/com/google/android/exoplayer2/transformer/mh/AndroidTestUtil.java
View file @
e01ef47d
...
...
@@ -15,6 +15,7 @@
*/
package
com
.
google
.
android
.
exoplayer2
.
transformer
.
mh
;
import
static
com
.
google
.
android
.
exoplayer2
.
util
.
Assertions
.
checkState
;
import
static
com
.
google
.
common
.
truth
.
Truth
.
assertWithMessage
;
import
static
java
.
util
.
concurrent
.
TimeUnit
.
SECONDS
;
...
...
@@ -25,7 +26,6 @@ import androidx.annotation.Nullable;
import
androidx.test.platform.app.InstrumentationRegistry
;
import
com.google.android.exoplayer2.MediaItem
;
import
com.google.android.exoplayer2.transformer.Transformer
;
import
com.google.android.exoplayer2.util.Assertions
;
import
java.io.File
;
import
java.io.FileWriter
;
import
java.io.IOException
;
...
...
@@ -135,9 +135,8 @@ import org.checkerframework.checker.nullness.compatqual.NullableType;
private
static
File
createExternalCacheFile
(
Context
context
,
String
fileName
)
throws
IOException
{
File
file
=
new
File
(
context
.
getExternalCacheDir
(),
fileName
);
Assertions
.
checkState
(
!
file
.
exists
()
||
file
.
delete
(),
"Could not delete file: "
+
file
.
getAbsolutePath
());
Assertions
.
checkState
(
file
.
createNewFile
(),
"Could not create file: "
+
file
.
getAbsolutePath
());
checkState
(!
file
.
exists
()
||
file
.
delete
(),
"Could not delete file: "
+
file
.
getAbsolutePath
());
checkState
(
file
.
createNewFile
(),
"Could not create file: "
+
file
.
getAbsolutePath
());
return
file
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment