LUCENE-1582: Fix missing public accessor in ShiftAttribute

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@763004 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2009-04-07 22:25:46 +00:00
parent 42783c57e5
commit c7ac1fdec3
1 changed files with 4 additions and 1 deletions

View File

@ -36,7 +36,10 @@ public final class ShiftAttribute extends Attribute implements Cloneable, Serial
return shift;
}
void setShift(final int shift) {
/**
* Sets the shift value.
*/
public void setShift(final int shift) {
this.shift = shift;
}