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 #1096. Make Cell extend StructuralNode instead of ContentNode. #1099

Merged

Conversation

robertpanzer
Copy link
Member

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?

Fix the issue #1096.
Calling Document.findBy() should not result in a ClassCastException.

How does it achieve that?

Make Cell extend StructuralNode instead of ContentNode. That way the ClassCastException does not happen anymore since Document.findBy() returns a List<StructuralNode>

Are there any alternative ways to implement this?

Make Document.findBy() return a List<ContentNode>. However, afaict, this doesn't make much sense.

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

No.
It's currently on the main branch which eventually results in the next major version.
However, according to https://docs.oracle.com/javase/specs/jls/se7/html/jls-13.html, it should even be possible to backport this to the current 2.x line and publish a new bugfix release.

Issue

If this PR fixes an open issue, please add a line of the form:

Fixes #1096

@robertpanzer robertpanzer merged commit 6346baa into asciidoctor:main Jul 26, 2022
@robertpanzer robertpanzer deleted the fix-1096-cell-structuralnode branch July 26, 2022 17:47
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.

class org.asciidoctor.jruby.ast.impl.CellImpl cannot be cast to class org.asciidoctor.ast.StructuralNode
1 participant