You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/06/22 13:15:37 UTC

[commons-lang] 01/02: Formatting.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 4d403b4ff374eb7d3569a3e56cf135666ee9691d
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Jun 22 09:14:34 2020 -0400

    Formatting.
---
 src/main/java/org/apache/commons/lang3/time/DateUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/lang3/time/DateUtils.java b/src/main/java/org/apache/commons/lang3/time/DateUtils.java
index 078c21e..1df4e83 100644
--- a/src/main/java/org/apache/commons/lang3/time/DateUtils.java
+++ b/src/main/java/org/apache/commons/lang3/time/DateUtils.java
@@ -368,7 +368,7 @@ public class DateUtils {
         }
 
         final TimeZone tz = TimeZone.getDefault();
-        final Locale lcl = locale==null ?Locale.getDefault() : locale;
+        final Locale lcl = locale==null ? Locale.getDefault() : locale;
         final ParsePosition pos = new ParsePosition(0);
         final Calendar calendar = Calendar.getInstance(tz, lcl);
         calendar.setLenient(lenient);