-
Notifications
You must be signed in to change notification settings - Fork 62
Make Preprocessor Parts Stateless to Simplify DI #24 #153
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
Conversation
CobolLineReaderImpl reader = new CobolLineReaderImpl(null); | ||
return reader.processLines(text, FIXED); | ||
CobolLineReaderImpl reader = new CobolLineReaderImpl(); | ||
return reader.processLines(null, text, FIXED); |
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.
I think we should plan a small effort to have an method overloading here instead to pass null
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.
Yes, work in progress
🎉 This PR is included in version 0.11.1-alpha.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
No description provided.