Author: ron.sigal(a)jboss.com
Date: 2008-04-04 18:25:37 -0400 (Fri, 04 Apr 2008)
New Revision: 3892
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/callback/CallbackStore.java
Log:
JBREM-934: Replaced File.mkdirs() with SystemUtility.mkdirs().
Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/callback/CallbackStore.java
===================================================================
---
remoting2/branches/2.x/src/main/org/jboss/remoting/callback/CallbackStore.java 2008-04-04
22:24:35 UTC (rev 3891)
+++
remoting2/branches/2.x/src/main/org/jboss/remoting/callback/CallbackStore.java 2008-04-04
22:25:37 UTC (rev 3892)
@@ -140,7 +140,7 @@
File storeFile = new File(filePath);
if (!storeFile.exists())
{
- boolean madeDir = storeFile.mkdirs();
+ boolean madeDir = SystemUtility.mkdirs(storeFile);
if (!madeDir)
{
throw new IOException("Can not create directory for store. Path
given: " + filePath);