Skip to content

Commit

Permalink
Fix create javadoc (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsute authored Mar 21, 2024
1 parent 4378a90 commit 1368b63
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>dev.katsute</groupId>
<artifactId>onemta</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>

<profiles>
<profile>
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/dev/katsute/onemta/MTA.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Represents the MTA API.
* <br>
* Authenticate using {@link #create(String, String, DataResource...)}
* Authenticate using {@link #create(String, DataResource...)}
*
* @since 1.0.0
* @version 3.0.0
Expand All @@ -45,7 +45,7 @@ public abstract class MTA {
* @param resources <b>(required)</b> static data resource, see {@link DataResource}
* @return MTA
*
* @see #create(String, String, int, DataResource...)
* @see #create(String, int, DataResource...)
* @since 3.0.0
*/
public static MTA create(final String busToken, final DataResource... resources){
Expand All @@ -60,7 +60,7 @@ public static MTA create(final String busToken, final DataResource... resources)
* @param resources <b>(required)</b> static data resource, see {@link DataResource}
* @return MTA
*
* @see #create(String, String, DataResource...)
* @see #create(String, DataResource...)
* @since 3.0.0
*/
public static MTA create(final String busToken, final int cacheSeconds, final DataResource... resources){
Expand All @@ -86,7 +86,7 @@ public static MTA create(final String busToken, final int cacheSeconds, final Da
* Returns a bus route.
*
* @param route_id bus route ID
* @param type data resource that the bus route is in, must have been added to {@link #create(String, String, DataResource...)}
* @param type data resource that the bus route is in, must have been added to {@link #create(String, DataResource...)}
* @return bus route
*
* @see DataResourceType
Expand All @@ -112,7 +112,7 @@ public static MTA create(final String busToken, final int cacheSeconds, final Da
* Returns a bus stop.
*
* @param stop_id bus stop ID
* @param type data resource that the bus stop is in, must have been added to {@link #create(String, String, DataResource...)}
* @param type data resource that the bus stop is in, must have been added to {@link #create(String, DataResource...)}
*
* @return bus stop
*
Expand Down

0 comments on commit 1368b63

Please sign in to comment.