svnno****@sourc*****
svnno****@sourc*****
2009年 5月 22日 (金) 10:00:05 JST
Revision: 3415 http://svn.sourceforge.jp/view?root=jiemamy&view=rev&rev=3415 Author: ewigkeit1204 Date: 2009-05-22 10:00:05 +0900 (Fri, 22 May 2009) Log Message: ----------- 警告の解消。 File.toURL() は Deprecated になってたので、File.toURI().toURL() とした。 Modified Paths: -------------- leto/jiemamy-commons/trunk/src/main/java/org/jiemamy/utils/FileUtil.java -------------- next part -------------- Modified: leto/jiemamy-commons/trunk/src/main/java/org/jiemamy/utils/FileUtil.java =================================================================== --- leto/jiemamy-commons/trunk/src/main/java/org/jiemamy/utils/FileUtil.java 2009-05-21 10:53:14 UTC (rev 3414) +++ leto/jiemamy-commons/trunk/src/main/java/org/jiemamy/utils/FileUtil.java 2009-05-22 01:00:05 UTC (rev 3415) @@ -104,7 +104,7 @@ */ public static URL toURL(final File file) throws MalformedURLException { Validate.notNull(file); - return file.toURL(); + return file.toURI().toURL(); } /**