-
Notifications
You must be signed in to change notification settings - Fork 94
fix: javadoc for isthmus-cli and examples #644
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
base: main
Are you sure you want to change the base?
Conversation
JavaDoc fixes to ensure the examples and isthmus-cli are clean. Not expecting these to be published, as not APIs to use directly. Signed-off-by: MBWhite <[email protected]>
examples/isthmus-api/src/main/java/io/substrait/examples/SchemaHelper.java
Outdated
Show resolved
Hide resolved
examples/isthmus-api/src/main/java/io/substrait/examples/SchemaHelper.java
Outdated
Show resolved
Hide resolved
| /** Indent character. */ | ||
| protected String indentChar = " "; | ||
|
|
||
| /** Indents of idnentsize to use. */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It feels to me like if we have fields with the same semantic they should have the same documentation. So I would use the same comment also for the previous ones in FunctionArgStringify and ParentStringify.
| /** Indents of idnentsize to use. */ | |
| /** Number of indents to use. */ |
| * Get the outdent to use, decreats indent counter. | ||
| * | ||
| * @param sb Stribug Builder with outdent | ||
| * @return outdent string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * Get the outdent to use, decreats indent counter. | |
| * | |
| * @param sb Stribug Builder with outdent | |
| * @return outdent string | |
| * Get the outdent to use, decreaces the indent counter. | |
| * | |
| * @param sb {@link StringBuilder} with the outdent | |
| * @return outdent string |
| /** | ||
| * Constructor. | ||
| * | ||
| * @param indent numver of idents to use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * @param indent numver of idents to use | |
| * @param indent number of indents to use |
| import org.graalvm.nativeimage.hosted.RuntimeReflection; | ||
| import org.immutables.value.Value; | ||
|
|
||
| /** */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| /** */ | |
| /** GraalVM {@link Feature} used during native image generation which registers classes for reflection at runtime using {@link RuntimeReflection}. */ |
| package io.substrait.isthmus.cli; | ||
|
|
||
| /** */ | ||
| public class InitializeAtBuildTime {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like more dead code that we can drop. I don't think this class is used anywhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
…SchemaHelper.java Co-authored-by: Niels Pardon <[email protected]>
…SchemaHelper.java Co-authored-by: Niels Pardon <[email protected]>
JavaDoc fixes to ensure the examples and isthmus-cli are clean. Not expecting these to be published, as not APIs to use directly.