From 648c1c3c993a6a492457aec6cecf69bf11684764 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 18 Feb 2002 00:06:57 +0000 Subject: [PATCH] Need to use / not File.separator because apparently jar files always want forward slashes. (Write once, run anywhere!) git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1015 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/cast/bundle/BundledComponentRepository.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/threerings/cast/bundle/BundledComponentRepository.java b/src/java/com/threerings/cast/bundle/BundledComponentRepository.java index 02a9147de..4e706d09f 100644 --- a/src/java/com/threerings/cast/bundle/BundledComponentRepository.java +++ b/src/java/com/threerings/cast/bundle/BundledComponentRepository.java @@ -1,5 +1,5 @@ // -// $Id: BundledComponentRepository.java,v 1.5 2001/12/17 03:33:41 mdb Exp $ +// $Id: BundledComponentRepository.java,v 1.6 2002/02/18 00:06:57 mdb Exp $ package com.threerings.cast.bundle; @@ -222,8 +222,8 @@ public class BundledComponentRepository } // construct the appropriate image path for the component - String path = component.componentClass.name + File.separator + - component.name + File.separator + action + + String path = component.componentClass.name + "/" + + component.name + "/" + action + BundleUtil.IMAGE_EXTENSION; // clone the tileset with this new image path