From f9c0dca1bf7d7d1fbfad1d58ee3d1dcd7fb9cbf5 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Mon, 22 Aug 2005 01:20:12 +0000 Subject: [PATCH] Removed extra () layer. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@234412 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/lang/SystemUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/lang/SystemUtils.java b/src/java/org/apache/commons/lang/SystemUtils.java index fbd3879bb..157a65f30 100644 --- a/src/java/org/apache/commons/lang/SystemUtils.java +++ b/src/java/org/apache/commons/lang/SystemUtils.java @@ -695,8 +695,8 @@ public class SystemUtils { * @since Java 1.2 */ public static final String USER_COUNTRY = - (getSystemProperty("user.country") == null ? - getSystemProperty("user.region") : getSystemProperty("user.country")); + getSystemProperty("user.country") == null ? + getSystemProperty("user.region") : getSystemProperty("user.country"); /** *

The user.dir System Property. User's current working