Skip to content

Commit 1ac790e

Browse files
author
Eduardo Niehues
committed
3.0.0-RELEASE
1 parent 9005511 commit 1ac790e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>br.com.eits</groupId>
66
<artifactId>eits-java-common</artifactId>
7-
<version>3.0.0-SNAPSHOT</version>
7+
<version>3.0.0-RELEASE</version>
88

99
<!-- Properties -->
1010
<properties>

src/main/java/br/com/eits/common/application/dwr/converter/LocalDateTimeConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public OutboundVariable convertOutbound( Object data, OutboundContext outctx ) t
117117
}
118118
else if ( data instanceof LocalDate )
119119
{
120-
dt = LocalDateTime.of( ( LocalDate ) data, LocalTime.MIDNIGHT );
120+
dt = LocalDateTime.of( ( LocalDate ) data, LocalTime.NOON );
121121
}
122122
else if ( data instanceof LocalTime )
123123
{

0 commit comments

Comments
 (0)