Created
July 19, 2019 03:47
-
-
Save Harshal96/2bb0ec7704ccf4354ec44cc5890fd790 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| public Foo foo(String in) { | |
| class FooFormat extends Format { | |
| public Object parse(String s, ParsePosition pp) { | |
| // parse stuff? | |
| } | |
| } | |
| return (Foo) new FooFormat().parse(in); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment