Skip to content

Commit

Permalink
NotNull -> NonNull
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed Aug 10, 2023
1 parent c7eb2f1 commit 2105b3c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/java/de/blau/android/validation/ValidatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
import org.robolectric.annotation.Config;
import org.xml.sax.SAXException;

import com.drew.lang.annotations.NotNull;

import androidx.annotation.NonNull;
import androidx.test.core.app.ApplicationProvider;
import androidx.test.filters.LargeTest;
import de.blau.android.App;
Expand Down Expand Up @@ -204,7 +203,7 @@ public void missingTagsUS() {
*
* @param fileName the resource file name
*/
private void readTestData(@NotNull String fileName) {
private void readTestData(@NonNull String fileName) {
// read in test data
final CountDownLatch signal1 = new CountDownLatch(1);

Expand Down

0 comments on commit 2105b3c

Please sign in to comment.