Fix compiler error

This commit is contained in:
Lignum 2017-05-05 19:13:52 +02:00
parent b0ac48b9a3
commit 988e9f10db
No known key found for this signature in database
GPG Key ID: 0889206F5A8A700D
1 changed files with 1 additions and 1 deletions

View File

@ -666,7 +666,7 @@ private synchronized <T extends IMountedFile> T openFile(T file, Closeable handl
throw new FileSystemException("Too many files already open");
}
m_openFiles.put( file, null );
m_openFiles.add( file );
return file;
}
}