Skip to content

Commit

Permalink
Remove redundant package (#27)
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?
Remove redundant package.
Introduced in #18.

### Why are the changes needed?
better code

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
No
  • Loading branch information
wForget committed Jul 5, 2022
1 parent f7c9a2a commit 5c26fa3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import org.apache.uniffle.server.ShuffleServerConf;
import org.apache.uniffle.storage.util.StorageType;

public class SparkSQLWithDelegationShuffleManager extends org.apache.uniffle.test.SparkSQLTest {
public class SparkSQLWithDelegationShuffleManager extends SparkSQLTest {

@BeforeAll
public static void setupServers() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
import org.apache.uniffle.server.ShuffleServerConf;
import org.apache.uniffle.storage.util.StorageType;

public class SparkSQLWithDelegationShuffleManagerFallback extends org.apache.uniffle.test.SparkSQLTest {
public class SparkSQLWithDelegationShuffleManagerFallback extends SparkSQLTest {

@BeforeAll
public static void setupServers() throws Exception {
final String candidates = Objects.requireNonNull(
org.apache.uniffle.test.SparkSQLWithDelegationShuffleManager.class.getClassLoader().getResource("candidates")).getFile();
SparkSQLWithDelegationShuffleManager.class.getClassLoader().getResource("candidates")).getFile();
CoordinatorConf coordinatorConf = getCoordinatorConf();
coordinatorConf.setString(
CoordinatorConf.COORDINATOR_ACCESS_CHECKERS.key(),
Expand Down

0 comments on commit 5c26fa3

Please sign in to comment.