Skip to content

Commit

Permalink
Merge branch '5.4.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ConfluentJenkins committed Jan 31, 2020
2 parents 63ec5c7 + 2c80a6c commit 8080189
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

public class HiveMetaStoreException extends ConnectException {

private static final long serialVersionUID = 1L;

public HiveMetaStoreException(String s) {
super(s);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
import org.apache.kafka.connect.errors.ConnectException;

public class PartitionException extends ConnectException {


private static final long serialVersionUID = 1L;

public PartitionException(String s) {
super(s);
}
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Werror</arg>
Expand Down

0 comments on commit 8080189

Please sign in to comment.