From 7c875d8b5683c5075c1812a867f56b4bb631930e Mon Sep 17 00:00:00 2001 From: sjfink Date: Mon, 1 Dec 2008 22:17:16 +0000 Subject: [PATCH] tweak path logic git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3105 f5eafffb-2e1d-0410-98e4-8ec43c5233c4 --- .../src/com/ibm/wala/properties/WalaProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.ibm.wala.core/src/com/ibm/wala/properties/WalaProperties.java b/com.ibm.wala.core/src/com/ibm/wala/properties/WalaProperties.java index bd4adcd49..a4cd4e110 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/properties/WalaProperties.java +++ b/com.ibm.wala.core/src/com/ibm/wala/properties/WalaProperties.java @@ -150,7 +150,7 @@ public final class WalaProperties { l = l.replace("update@", ""); } if (l.startsWith("reference:file:")) { - return l.replace("reference:file:/",""); + return l.replace("reference:file:",""); } else { return install + File.separator + l; }