Fix javadoc for SystemReader#getInstance

The existing javadoc was copied from another method and not adapted.

Change-Id: I39a7e5d719b2c379de9bd1a4710a55a73700c6f0
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2019-08-15 01:36:41 +02:00
parent 2d84bb4341
commit b51bb4f7bd
1 changed files with 3 additions and 3 deletions

View File

@ -152,16 +152,16 @@ public int getTimezone(long when) {
private static SystemReader INSTANCE = DEFAULT; private static SystemReader INSTANCE = DEFAULT;
/** /**
* Get time since epoch, with up to millisecond resolution. * Get the current SystemReader instance
* *
* @return time since epoch, with up to millisecond resolution. * @return the current SystemReader instance.
*/ */
public static SystemReader getInstance() { public static SystemReader getInstance() {
return INSTANCE; return INSTANCE;
} }
/** /**
* Set the new instance to use when accessing properties. * Set a new SystemReader instance to use when accessing properties.
* *
* @param newReader * @param newReader
* the new instance to use when accessing properties, or null for * the new instance to use when accessing properties, or null for