From c62b939f526590227c8837f431e2f1b403cbcfdb Mon Sep 17 00:00:00 2001 From: markt Date: Wed, 14 Apr 2010 14:46:07 +0000 Subject: [PATCH] Fully fix https://issues.apache.org/bugzilla/show_bug.cgi?id=49082 git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@933972 13f79535-47bb-0310-9956-ffa450edef68 --- java/javax/el/ExpressionFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/javax/el/ExpressionFactory.java b/java/javax/el/ExpressionFactory.java index 0780f0cf2..6295096a6 100644 --- a/java/javax/el/ExpressionFactory.java +++ b/java/javax/el/ExpressionFactory.java @@ -71,8 +71,8 @@ public abstract class ExpressionFactory { ); } else { SEP = System.getProperty("file.separator"); - PROPERTY_FILE = System.getProperty("java.home") + "lib" + SEP + - "el.properties"; + PROPERTY_FILE = System.getProperty("java.home") + SEP + "lib" + + SEP + "el.properties"; } } -- 2.11.0