Skip to content

Commit

Permalink
Remove commons-lang3
Browse files Browse the repository at this point in the history
  • Loading branch information
drpmma committed Jan 10, 2024
1 parent 4c091e7 commit da868b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 0 additions & 4 deletions java/client-apis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,5 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import static com.google.common.base.Preconditions.checkNotNull;

import java.time.Duration;
import org.apache.commons.lang3.StringUtils;
import org.apache.rocketmq.client.apis.consumer.SimpleConsumer;
import org.apache.rocketmq.client.apis.consumer.SimpleConsumerBuilder;

Expand All @@ -32,7 +31,7 @@ public class ClientConfigurationBuilder {
private SessionCredentialsProvider sessionCredentialsProvider = null;
private Duration requestTimeout = Duration.ofSeconds(3);
private boolean sslEnabled = true;
private String namespace = StringUtils.EMPTY;
private String namespace = "";

/**
* Configure the access point with which the SDK should communicate.
Expand Down

0 comments on commit da868b6

Please sign in to comment.