-
Notifications
You must be signed in to change notification settings - Fork 841
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
revert change to PGProperty.get() to keep the API consistent #2644
Conversation
} | ||
|
||
/** | ||
* Returns the value of the connection parameter from the given {@code Properties} or null if there |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Returns the value of the connection parameter from the given {@code Properties} or null if there | |
* Returns the value of the connection parameter from the given {@link Properties} or {@code null} if there |
@@ -851,7 +851,7 @@ public String getDescription() { | |||
} | |||
|
|||
/** | |||
* Returns the value of the connection parameters according to the given {@code Properties} or the | |||
* Returns the value of the connection parameter from the given {@code Properties} or the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Returns the value of the connection parameter from the given {@code Properties} or the | |
* Returns the value of the connection parameter from the given {@link Properties} or the |
@@ -862,12 +862,24 @@ public String getDescription() { | |||
} | |||
|
|||
/** | |||
* Returns the value of the connection parameters according to the given {@code Properties} | |||
* | |||
* Returns the value of the connection parameter from the given {@code Properties} or the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Returns the value of the connection parameter from the given {@code Properties} or the | |
* Returns the value of the connection parameter from the given {@link Properties} or the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so if we change that one we should change all of them in the file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. It would be nice if the PR could be merged as a single commit (or two commits: "restore .get", and "fix code->link")
bf946fe
to
c50a9cf
Compare
strangely |
I guess it should be |
ah, that makes more sense, thx |
No description provided.