-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor javadoc updates around unpick (#2200)
* Minor javadoc updates around unpick Signed-off-by: liach <[email protected]> * Apply suggestions from code review Co-authored-by: Juuxel <[email protected]> Co-authored-by: liach <[email protected]> Co-authored-by: Juuxel <[email protected]>
- Loading branch information
1 parent
19df3cd
commit ccf403e
Showing
7 changed files
with
47 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This file is free for everyone to use under the Creative Commons Zero license. |
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
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
13 changes: 13 additions & 0 deletions
13
src/constants/java/net/fabricmc/yarn/constants/package-info.java
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* This file is free for everyone to use under the Creative Commons Zero license. | ||
*/ | ||
|
||
/** | ||
* Provides a few classes holding constants that possibly existed for better understanding | ||
* of the Minecraft codebase. | ||
* | ||
* <p><strong>Warning:</strong> These classes are absent at runtime. They are exclusively | ||
* for use during compile time, in which the Java Compiler will replace the field references | ||
* with <a href="{@docRoot}/constant-values.html#net.fabricmc">constant values</a>. | ||
*/ | ||
package net.fabricmc.yarn.constants; |