mirror of https://github.com/apache/poi.git
bug 56154: add @since annotations to getLastModifiedBy and setLastModifiedBy methods
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751949 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9e383edf35
commit
5c82332f02
|
@ -301,9 +301,11 @@ public class POIXMLProperties {
|
|||
public void setLastPrinted(String date) {
|
||||
part.setLastPrintedProperty(date);
|
||||
}
|
||||
/** @since POI 3.15 beta 3 */
|
||||
public String getLastModifiedBy() {
|
||||
return part.getLastModifiedByProperty().getValue();
|
||||
}
|
||||
/** @since POI 3.15 beta 3 */
|
||||
public void setLastModifiedBy(String user) {
|
||||
part.setLastModifiedByProperty(user);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue