Remove redundant 'public' modifiers
CheckStyle reports 'public' being redundant on the constructor of ApproveOption#Handler, but removing it causes test failures due to org.kohsuke.args4j.Option requiring an explicitly public constructor. Add a suppression for that one, and remove the 'public' in other places where it's reported. Change-Id: Ifbcf279ffa783d33b81efc1c675f468c3ea39135
This commit is contained in:
@@ -30,7 +30,7 @@ class HANA extends BaseDataSourceType {
|
||||
private Config cfg;
|
||||
|
||||
@Inject
|
||||
public HANA(@GerritServerConfig final Config cfg) {
|
||||
HANA(@GerritServerConfig final Config cfg) {
|
||||
super("com.sap.db.jdbc.Driver");
|
||||
this.cfg = cfg;
|
||||
}
|
||||
|
@@ -29,7 +29,7 @@ class MaxDb extends BaseDataSourceType {
|
||||
private Config cfg;
|
||||
|
||||
@Inject
|
||||
public MaxDb(@GerritServerConfig final Config cfg) {
|
||||
MaxDb(@GerritServerConfig final Config cfg) {
|
||||
super("com.sap.dbtech.jdbc.DriverSapDB");
|
||||
this.cfg = cfg;
|
||||
}
|
||||
|
@@ -28,7 +28,7 @@ class MySql extends BaseDataSourceType {
|
||||
private Config cfg;
|
||||
|
||||
@Inject
|
||||
public MySql(@GerritServerConfig final Config cfg) {
|
||||
MySql(@GerritServerConfig final Config cfg) {
|
||||
super("com.mysql.jdbc.Driver");
|
||||
this.cfg = cfg;
|
||||
}
|
||||
|
@@ -30,7 +30,7 @@ class PostgreSQL extends BaseDataSourceType {
|
||||
private Config cfg;
|
||||
|
||||
@Inject
|
||||
public PostgreSQL(@GerritServerConfig final Config cfg) {
|
||||
PostgreSQL(@GerritServerConfig final Config cfg) {
|
||||
super("org.postgresql.Driver");
|
||||
this.cfg = cfg;
|
||||
}
|
||||
|
Reference in New Issue
Block a user