From 9d9fed7c7f8690354ef055d6119b5d3765fefeed Mon Sep 17 00:00:00 2001 From: markt Date: Mon, 12 Apr 2010 09:26:39 +0000 Subject: [PATCH] Partial fox for https://issues.apache.org/bugzilla/show_bug.cgi?id=49082 java.home may not include the final path separator git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@933162 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 27e8b793d..0780f0cf2 100644 --- a/java/javax/el/ExpressionFactory.java +++ b/java/javax/el/ExpressionFactory.java @@ -63,8 +63,8 @@ public abstract class ExpressionFactory { new PrivilegedAction(){ @Override public String run() { - return System.getProperty("java.home") + "lib" + - SEP + "el.properties"; + return System.getProperty("java.home") + SEP + + "lib" + SEP + "el.properties"; } } -- 2.11.0