Skip to content
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

Fixes #1221. 'UnsupportedOperationException' when passing immutable Map as options to 'createPhraseNode' #1222

Merged
merged 2 commits into from
Jun 22, 2023

Conversation

robertpanzer
Copy link
Member

Create mutable copies of options passed to Processor.create...()

Thank you for opening a pull request and contributing to AsciidoctorJ!

Please take a bit of time giving some details about your pull request:

Kind of change

  • Bug fix
  • New non-breaking feature
  • New breaking feature
  • Documentation update
  • Build improvement

Description

What is the goal of this pull request?

Some methods of the Processor API to create nodes mutate the given attributes and options maps.
This is not only surprising, but apparently also fails with an exception if the given map is immutable.
This PR tries to fix this by creating a copy of the given map.

How does it achieve that?

Make a copy of the given map.

Are there any alternative ways to implement this?

I don't think so.

Are there any implications of this pull request? Anything a user must know?

Just in case, it should be impossible to mutate the given options after the Processor was called. This is likely made up, and makes assumptions of the internal behavior of AsciidoctorJ from the users perspective.

Issue

Fixes #1221

Create mutable copies of options passed to Processor.create...()
@robertpanzer robertpanzer merged commit 58c0226 into asciidoctor:main Jun 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

'UnsupportedOperationException' when passing immutable Map as options to 'createPhraseNode'
1 participant