Skip to content

Commit

Permalink
Fix javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kdubb committed Oct 20, 2015
1 parent 636b3a5 commit cea783d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public class PGPooledConnectionDelegator implements PGConnection {
/**
* Constructor
* @param owner The owner
* @param isXA Is XA
* @param delegator The delegator
*/
public PGPooledConnectionDelegator(PGPooledConnection owner, PGConnection delegator) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public OnDemadKeyManager(String certfile, String keyfile, CallbackHandler cbh, b
* getCertificateChain and getPrivateKey cannot throw exeptions, therefore any
* exception is stored in this.error and can be raised by this method
*
* @throws PSQLException
* @throws SQLException
*/
public void throwKeyManagerException() throws SQLException {
if (error != null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public double[][] parsePolygon(CharSequence s) {
/**
* Parses a circle.
* <pre>
* < ( x , y ) , r >
* &lt; ( x , y ) , r &gt;
* ( ( x , y ) , r )
* ( x , y ) , r
* x , y , r
Expand Down Expand Up @@ -207,7 +207,7 @@ public double[] parseLSeg(CharSequence s) {
* x1 , y1 , x2 , y2
* </pre>
* @param s The line to parse.
* @return An array of size 3 ([A,B,C] --> Ax+By+C=0.)
* @return An array of size 3 ([A,B,C] --&gt; Ax+By+C=0.)
*/
public double[] parseLine(CharSequence s) {
int pos = consummeSpace(s, 0, true);
Expand Down

0 comments on commit cea783d

Please sign in to comment.