Skip to content

Commit

Permalink
CB-5758 review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-skoblikov committed Nov 12, 2024
1 parent 21e54a7 commit 8349ec6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
* Object with contextual information
*/
public interface ObjectWithContextParameters {
String CONTEXT_PARAMETER_DRIVER_VERIFIER = "dbeaver.driver.verifier";

@NotNull

Check warning on line 28 in modules/org.jkiss.utils/src/org/jkiss/api/ObjectWithContextParameters.java

View workflow job for this annotation

GitHub Actions / Check / Lint

[checkstyle] reported by reviewdog 🐶 Missing a Javadoc comment. Raw Output: /github/workspace/./modules/org.jkiss.utils/src/org/jkiss/api/ObjectWithContextParameters.java:28:5: warning: Missing a Javadoc comment. (com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocMethodCheck)
Map<String, Object> getObjectContextParameters();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import java.nio.file.Path;

public interface DriverAccessVerifier {
public interface FileSystemAccessVerifyer {

Check warning on line 23 in modules/org.jkiss.utils/src/org/jkiss/api/verification/FileSystemAccessVerifyer.java

View workflow job for this annotation

GitHub Actions / Check / Lint

[checkstyle] reported by reviewdog 🐶 Missing a Javadoc comment. Raw Output: /github/workspace/./modules/org.jkiss.utils/src/org/jkiss/api/verification/FileSystemAccessVerifyer.java:23:1: warning: Missing a Javadoc comment. (com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocTypeCheck)
/**

Check warning on line 24 in modules/org.jkiss.utils/src/org/jkiss/api/verification/FileSystemAccessVerifyer.java

View workflow job for this annotation

GitHub Actions / Check / Lint

[checkstyle] reported by reviewdog 🐶 Summary javadoc is missing. Raw Output: /github/workspace/./modules/org.jkiss.utils/src/org/jkiss/api/verification/FileSystemAccessVerifyer.java:24:0: warning: Summary javadoc is missing. (com.puppycrawl.tools.checkstyle.checks.javadoc.SummaryJavadocCheck)
* @param path - the path the driver is trying to access
* @return true if access is allowed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@
*/
package org.jkiss.api.verification;

public interface VerifiableDriver {
public interface ObjectWithVerification {

Check warning on line 19 in modules/org.jkiss.utils/src/org/jkiss/api/verification/ObjectWithVerification.java

View workflow job for this annotation

GitHub Actions / Check / Lint

[checkstyle] reported by reviewdog 🐶 Missing a Javadoc comment. Raw Output: /github/workspace/./modules/org.jkiss.utils/src/org/jkiss/api/verification/ObjectWithVerification.java:19:1: warning: Missing a Javadoc comment. (com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocTypeCheck)
String CONTEXT_PARAMETER_DRIVER_VERIFIER = "dbeaver.verifier";

}

0 comments on commit 8349ec6

Please sign in to comment.