forked from WinPlay02/GitCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIXED: Validating old meta files failed after source changed
CHANGED: Disabled outlet version lookup for now
- Loading branch information
Showing
4 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/main/groovy/dex/mcgitmaker/data/outlet/McOutletMeta.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
package dex.mcgitmaker.data.outlet | ||
|
||
import dex.mcgitmaker.data.McVersion | ||
import groovy.transform.ToString | ||
|
||
@ToString | ||
class McOutletMeta { | ||
Date lastChanged | ||
ArrayList<McFabric> versions | ||
|
||
Optional<McFabric> getVersion(McVersion version) { | ||
return Optional.empty(); | ||
} | ||
} |