1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-25 22:53:22 +00:00
This commit is contained in:
Wilma456 2017-07-15 16:41:40 +02:00
parent 239a2f0d25
commit f28a1ba517

View File

@ -276,7 +276,7 @@ private void deleteRecursively( File file ) throws IOException
}
else
{
throw new IOException( "Access denied (" + path + ")" );
throw new IOException( "Access denied" );
}
}
@ -361,7 +361,7 @@ private void create() throws IOException
boolean success = m_rootPath.mkdirs();
if( !success )
{
throw new IOException( "Access denied (" + path + ")" );
throw new IOException( "Access denied" );
}
}
}