Skip to content

Commit 71af861

Browse files
author
Jakob Vad Nielsen
committed
Fixed javadoc
1 parent 58a0520 commit 71af861

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/main/java/no/api/freemarker/java8/zone/EnvironmentZonedDateTimeStrategy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import java.util.TimeZone;
77

88
/**
9-
* {@link ZonedDateTimeStrategy} that always will transform the input {@link ZoneId} to the {@link ZoneId} provided by
10-
* {@link Environment#getCurrentEnvironment().getTimeZone().getTimeZone()}.<br>
9+
* ZonedDateTimeStrategy that always will transform the input {@link ZoneId} to the {@link ZoneId} provided by
10+
* Environment#getCurrentEnvironment().getTimeZone().getTimeZone().<br>
1111
*/
1212
public class EnvironmentZonedDateTimeStrategy implements ZonedDateTimeStrategy {
1313

src/main/java/no/api/freemarker/java8/zone/StaticZonedDateTimeStrategy.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.time.ZoneId;
44

55
/**
6-
* {@link ZonedDateTimeStrategy} that always will transform the input {@link ZoneId} to the initial set {@link ZoneId}.
6+
* ZonedDateTimeStrategy that always will transform the input {@link ZoneId} to the initial set {@link ZoneId}.
77
*/
88
public class StaticZonedDateTimeStrategy implements ZonedDateTimeStrategy {
99

@@ -14,7 +14,6 @@ public class StaticZonedDateTimeStrategy implements ZonedDateTimeStrategy {
1414
* Creates a new {@link StaticZonedDateTimeStrategy} instance, that will always return the given [{@code zone}.
1515
*
1616
* @param zoneId The {@link ZoneId} that should be returned by {@link #getZoneId(ZoneId)}.
17-
* @return New instance of {@link StaticZonedDateTimeStrategy}.
1817
*/
1918
public StaticZonedDateTimeStrategy(ZoneId zoneId) {
2019
if (zoneId == null) {

0 commit comments

Comments
 (0)