-
Notifications
You must be signed in to change notification settings - Fork 738
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
Implement new JDK12 method java.lang.String.indent(int) #4767
Implement new JDK12 method java.lang.String.indent(int) #4767
Conversation
48b675b
to
8ceae92
Compare
you can change the pr description to include "Fixes: #3850" since this is the last change needed to finish the issue. I'll give this a first review. |
test/functional/Java11andUp/src/org/openj9/test/java_lang/Test_String.java
Outdated
Show resolved
Hide resolved
test/functional/Java11andUp/src/org/openj9/test/java_lang/Test_String.java
Show resolved
Hide resolved
test/functional/Java11andUp/src/org/openj9/test/java_lang/Test_String.java
Outdated
Show resolved
Hide resolved
2e9a4f3
to
61312ce
Compare
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.
lgtm other than a small formatting change. @DanHeidinga or @pshipton can I ask one of you for a review?
Note this PR is dependent on the test framework commit in #4105 so that these tests can be moved to Java12andUp
7da0723
to
b08a715
Compare
test/functional/Java11andUp/src/org/openj9/test/java_lang/Test_String.java
Outdated
Show resolved
Hide resolved
test/functional/Java11andUp/src/org/openj9/test/java_lang/Test_String.java
Outdated
Show resolved
Hide resolved
b08a715
to
ce992da
Compare
1d294c2
to
79ea0f5
Compare
indent(int) adjusts the indentation of a string by adding or removing whitespace from the beginning of a string. Signed-off-by: Sharon Wang <sharon-wang-cpsc@outlook.com>
79ea0f5
to
b62b377
Compare
@DanHeidinga should be good to go! |
Jenkins test sanity xlinux jdk12 |
only build failure is the known |
Congrats @sharon-wang on your first OpenJ9 PR! |
Fixes: #3850.
Dependent on: #4105 test framework commit - sanity test for indent(int) will be moved to Java12andUp once it is available.
Signed-off-by: Sharon Wang sharon-wang-cpsc@outlook.com