Skip to content

Commit 4190cd1

Browse files
Follow-up: remove unused imports in BoxStoreBuilderTest.
1 parent 00319fd commit 4190cd1

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

tests/objectbox-java-test/src/test/java/io/objectbox/BoxStoreBuilderTest.java

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2020 ObjectBox Ltd. All rights reserved.
2+
* Copyright 2017-2023 ObjectBox Ltd. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,18 +16,8 @@
1616

1717
package io.objectbox;
1818

19-
import io.objectbox.exception.DbFullException;
20-
import io.objectbox.exception.DbMaxDataSizeExceededException;
21-
import io.objectbox.exception.PagesCorruptException;
22-
import io.objectbox.model.ValidateOnOpenMode;
23-
import org.greenrobot.essentials.io.IoUtils;
24-
import org.junit.Before;
25-
import org.junit.Test;
26-
2719
import java.io.File;
28-
import java.io.FileOutputStream;
2920
import java.io.IOException;
30-
import java.io.InputStream;
3121
import java.nio.file.Files;
3222
import java.nio.file.Path;
3323
import java.util.HashSet;
@@ -36,8 +26,12 @@
3626
import java.util.stream.Collectors;
3727
import java.util.stream.Stream;
3828

29+
import io.objectbox.exception.DbFullException;
30+
import io.objectbox.exception.DbMaxDataSizeExceededException;
31+
import org.junit.Before;
32+
import org.junit.Test;
33+
3934
import static org.junit.Assert.assertEquals;
40-
import static org.junit.Assert.assertNotNull;
4135
import static org.junit.Assert.assertSame;
4236
import static org.junit.Assert.assertThrows;
4337
import static org.junit.Assert.assertTrue;

0 commit comments

Comments
 (0)