Update of /cvsroot/nice/Nice/src/bossa/modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29008/F:/nice/src/bossa/modules
Modified Files:
DirectoryCompiledContent.java
Log Message:
Fixed minor oddities in code.
Index: DirectoryCompiledContent.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/modules/DirectoryCompiledContent.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** DirectoryCompiledContent.java 24 Jun 2003 15:28:19 -0000 1.8
--- DirectoryCompiledContent.java 13 Feb 2004 17:43:36 -0000 1.9
***************
*** 154,162 ****
File f = new File(directory, name);
! if (f != null)
! try{
! return new FileInputStream(f);
! }
! catch(FileNotFoundException e){}
return null;
--- 154,161 ----
File f = new File(directory, name);
! try{
! return new FileInputStream(f);
! }
! catch(FileNotFoundException e){}
return null;
|