mirror of https://github.com/apache/lucene.git
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:
parent
42783c57e5
commit
c7ac1fdec3
|
@ -36,7 +36,10 @@ public final class ShiftAttribute extends Attribute implements Cloneable, Serial
|
||||||
return shift;
|
return shift;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setShift(final int shift) {
|
/**
|
||||||
|
* Sets the shift value.
|
||||||
|
*/
|
||||||
|
public void setShift(final int shift) {
|
||||||
this.shift = shift;
|
this.shift = shift;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue