Skip to content

Commit

Permalink
Corrected javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
koen-serry committed Jan 17, 2022
1 parent da4e477 commit d550b8c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
name: Maven Release

on:
push:
tags:
- '*'
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.twikey</groupId>
<artifactId>twikey-api-java</artifactId>
<packaging>jar</packaging>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.4</version>
<name>Twikey Api</name>
<url>http://maven.apache.org</url>
<description>Official wrapper around the Twikey.com rest api</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/twikey/InvoiceGateway.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public JSONObject create(long ct, Customer customer, Map<String, String> invoice
* Get updates about all mandates (new/updated/cancelled)
*
* @param invoiceCallback Callback for every change
* @param sideloads items to include in the sideloading {@link <a href="https://www.twikey.com/api/#invoice-feed">www.twikey.com/api/#invoice-feed</a>}
* @param sideloads items to include in the sideloading @link <a href="https://www.twikey.com/api/#invoice-feed">www.twikey.com/api/#invoice-feed</a>
* @throws IOException When a network issue happened
* @throws TwikeyClient.UserException When there was an issue while retrieving the mandates (eg. invalid apikey)
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/twikey/PaylinkGateway.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public JSONObject create(long ct, Customer customer, Map<String, String> linkDet
* Get updates about all links
*
* @param callback Callback for every change
* @param sideloads items to include in the sideloading {@link <a href="https://www.twikey.com/api/#paymentlink-feed">www.twikey.com/api/#paymentlink-feed</a>}
* @param sideloads items to include in the sideloading @link <a href="https://www.twikey.com/api/#paymentlink-feed">www.twikey.com/api/#paymentlink-feed</a>
* @throws IOException When a network issue happened
* @throws TwikeyClient.UserException When there was an issue while retrieving the mandates (eg. invalid apikey)
*/
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/twikey/TransactionGateway.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public JSONObject create(String mandateNumber, Map<String, String> transactionDe
* Get updates about all mandates (new/updated/cancelled)
*
* @param callback Callback for every change
* @param sideloads items to include in the sideloading @link <a href="https://www.twikey.com/api/#transaction-feed">www.twikey.com/api/#transaction-feed</a>
* @throws IOException When a network issue happened
* @throws TwikeyClient.UserException When there was an issue while retrieving the mandates (eg. invalid apikey)
*/
Expand Down

0 comments on commit d550b8c

Please sign in to comment.