Skip to content

Commit

Permalink
Gradle 3
Browse files Browse the repository at this point in the history
Fixes some JavaDoc
  • Loading branch information
FlowArg committed Aug 30, 2023
1 parent 9268ea5 commit 8f791e8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ public String fetchModLink(@NotNull CurseFileInfo curseFileInfo)
* Get a CurseForge's mod pack object with a project identifier and a file identifier.
* @param info CurseForge's mod pack info.
* @return the curse's mod pack corresponding to given parameters.
* @throws Exception if an error occurred.
*/
public CurseModPack getCurseModPack(CurseModPackInfo info) throws Exception
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public Mod parseModFile(@NotNull JsonObject version)
* Get a CurseForge's mod pack object with a project identifier and a file identifier.
* @param info CurseForge's mod pack info.
* @return the curse's mod pack corresponding to given parameters.
* @throws Exception if an error occurred.
*/
public ModrinthModPack getCurseModPack(ModrinthModPackInfo info) throws Exception
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public boolean isVersionChecker()
/**
* The path to the java executable to use with Forge and Fabric installers.
* By default, it's taken from System.getProperty("java.home").
* @return the path to the java executable.
*/
public String getJavaPath()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ public abstract class AbstractForgeVersion extends AbstractModLoaderVersion
* Use {@link ForgeVersionBuilder} to instantiate this class.
* @param mods {@link List} to install.
* @param curseMods {@link List} to install.
* @param modrinthMods {@link List} to install.
* @param forgeVersion to install.
* @param fileDeleter {@link ModFileDeleter} used to clean up mods' dir.
* @param optiFineInfo OptiFine version to install.
* @param curseModPackInfo mod pack information.
* @param modrinthModPackInfo mod pack information.
* @param forgeVersionType the type of the forge version.
*/
protected AbstractForgeVersion(List<Mod> mods, List<CurseFileInfo> curseMods, List<ModrinthVersionInfo> modrinthMods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public interface IModLoaderVersion

/**
* Get the mod loader version.
* @return the mod loader version.
*/
String getModLoaderVersion();

Expand Down

0 comments on commit 8f791e8

Please sign in to comment.