Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4572826

Browse files
committed
Fixed JavaDoc issues
1 parent6b0976f commit4572826

File tree

6 files changed

+10
-3
lines changed

6 files changed

+10
-3
lines changed

‎.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
restore-keys:|
5757
${{ runner.os }}-maven-
5858
59-
-name:Maven deploysnapshot
59+
-name:Maven deployrelease
6060
run:mvn clean deploy -Prelease
6161
env:
6262
MAVEN_USERNAME:${{ secrets.MAVEN_USERNAME }}

‎src/main/java/org/utplsql/api/Version.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ private Version(String origString, @Nullable Integer major, @Nullable Integer mi
6363
/**
6464
* Use {@link Version#create} factory method instead
6565
* For removal
66+
*
67+
* @param versionString Version as String
6668
*/
6769
@Deprecated()
6870
publicVersion(StringversionString) {

‎src/main/java/org/utplsql/api/compatibility/CompatibilityProxy.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ private boolean versionCompatibilityCheckPre303(String versionRequested) {
135135
/**
136136
* Checks if actual API-version is compatible with utPLSQL database version and throws a DatabaseNotCompatibleException if not
137137
* Throws a DatabaseNotCompatibleException if version compatibility can not be checked.
138+
*
139+
* @throws DatabaseNotCompatibleException if versions are not compatible
138140
*/
139141
publicvoidfailOnNotCompatible()throwsDatabaseNotCompatibleException {
140142
if (!isCompatible()) {

‎src/main/java/org/utplsql/api/db/DynamicParameterList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ private DynamicParameterList(LinkedHashMap<String, DynamicParameter> params) {
3232

3333
/** Returns the SQL of this ParameterList as comma-separated list of the parameter identifiers:<br>
3434
*
35-
* e.g. "a_parameter1 => ?, a_parameter2 => ?"
35+
* e.g.<pre>"a_parameter1 => ?, a_parameter2 => ?"</pre>
3636
*
3737
* @return comma-separated list of parameter identifiers
3838
*/

‎src/main/java/org/utplsql/api/reporter/ReporterFactory.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ public Reporter createReporter(String reporterName, @Nullable Object[] attribute
120120
/**
121121
* Returns a new reporter of the given name (or should do so).
122122
* If no specific ReporterFactoryMethod is registered, returns a default {Reporter}
123+
*
124+
* @param reporterName Name of the reporter
123125
*/
124126
publicReportercreateReporter(StringreporterName) {
125127
returncreateReporter(reporterName,null);

‎src/main/java/org/utplsql/api/reporter/inspect/ReporterInspector.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ public interface ReporterInspector {
2525
* @param reporterFactory {@link ReporterFactory}
2626
* @param conn {@link Connection}
2727
* @return ReporterInspector
28-
* @throws SQLException if there are problems with the database access
28+
* @throws SQLException if there are problems with the database access
29+
* @throws InvalidVersionException if version is not valid
2930
*/
3031
staticReporterInspectorcreate(ReporterFactoryreporterFactory,Connectionconn)throwsSQLException,InvalidVersionException {
3132

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp