Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix #537 - support warnings that span multiple lines in standalone compiler #543

Merged
merged 23 commits into from
Oct 19, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update comment
Co-authored-by: Marten Lohstroh <marten@berkeley.edu>
  • Loading branch information
oowekyala and lhstrh authored Sep 27, 2021
commit 54d13b3d8bc7a0b48143590f4eb9e5bd37d86a5f
2 changes: 1 addition & 1 deletion org.lflang.lfc/src/org/lflang/lfc/LFStandaloneModule.java
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ public void configure(Binder binder) {
// This is required to force the ResourceValidator to
// use a new registry instance (which is reused by the injector as a singleton).
// Otherwise, it uses the static EValidator.Registry.INSTANCE which is bad
// as the first validator to be created would be persisted in that static instance.
// as the first validator to be created would persist in that static instance.
// New injectors would reuse the existing instance, but
// its fields would have been injected by an older injector
// and be out of sync with the rest of the application.