Repository: incubator-juneau Updated Branches: refs/heads/master 75714d994 -> 91ab3820c
Fix whitespace. Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/91ab3820 Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/91ab3820 Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/91ab3820 Branch: refs/heads/master Commit: 91ab3820cd785a3c21b8968824435e1ada38738d Parents: 75714d9 Author: JamesBognar <[email protected]> Authored: Fri Apr 7 13:01:14 2017 -0400 Committer: JamesBognar <[email protected]> Committed: Fri Apr 7 13:01:14 2017 -0400 ---------------------------------------------------------------------- .../java/org/apache/juneau/dto/atom/Entry.java | 22 ++++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/91ab3820/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java index b5b55e5..5658f9f 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/atom/Entry.java @@ -111,10 +111,10 @@ public class Entry extends CommonEntry { * * @return The publish timestamp of this entry. */ - @BeanProperty(swap=CalendarSwap.ISO8601DT.class) + @BeanProperty(swap=CalendarSwap.ISO8601DT.class) public Calendar getPublished() { - return published; - } + return published; + } /** * Sets the publish timestamp of this entry. @@ -123,10 +123,10 @@ public class Entry extends CommonEntry { * @return This object (for method chaining). */ @BeanProperty(name="published") - public Entry published(Calendar published) { - this.published = published; - return this; - } + public Entry published(Calendar published) { + this.published = published; + return this; + } /** * Sets the publish timestamp of this entry. @@ -135,10 +135,10 @@ public class Entry extends CommonEntry { * @return This object (for method chaining). */ @BeanProperty(name="published") - public Entry published(String published) { - this.published = parseDateTime(published); - return this; - } + public Entry published(String published) { + this.published = parseDateTime(published); + return this; + } /** * Returns the source of this entry.
