Skip to content

Commit

Permalink
Fixes GH-68: WordData.clone() should be public
Browse files Browse the repository at this point in the history
  • Loading branch information
dweiss committed Oct 21, 2015
1 parent 8dbb430 commit b1a0175
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ https://github.com/morfologik/morfologik-stemming/blob/master/CHANGES

======================= morfologik-stemming 2.0.2-SNAPSHOT =======================

Bug Fixes

* GH-68: WordData.clone() should be public. (Dawid Weiss)

Other Changes

* GH-64: reverted back OSGi annotations (bundle packaging). (Dawid Weiss)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public String toString() {
* this object. The content of all internal buffers is copied.
*/
@Override
protected WordData clone() {
public WordData clone() {
final WordData clone = new WordData(this.decoder);
clone.wordCharSequence = cloneCharSequence(wordCharSequence);
clone.wordBuffer = getWordBytes(null);
Expand Down

0 comments on commit b1a0175

Please sign in to comment.