ingomohr / docwriter

API to write docx documents
MIT License
1 stars 0 forks source link

Make loadDocumentFromInput in AbstractRuleBasedDocxWriter overridable #42

Closed ingomohr closed 3 years ago

ingomohr commented 3 years ago

loadDocumentFromInput in AbstractRuleBasedDocxWriter is protectected and can be overridden.

However, the method it uses in its default impl is private - so, if subclasser would want to use that method too, they'd have to copy it.

And there's no reason to have that method private.

Task

Make the private method protected.

ingomohr commented 3 years ago

Done