Skip to content
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

Fix create javadoc #205

Merged
merged 3 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading