3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 07:12:17 +00:00

Take out a bogus assert that did not do what I thought it did.

This commit is contained in:
Mike Hearn 2012-05-30 16:17:45 +02:00
parent d9c2aabf66
commit 73e640e3b3

View File

@ -19,7 +19,6 @@ package com.google.bitcoin.core;
import com.google.bitcoin.core.WalletTransaction.Pool;
import com.google.bitcoin.store.WalletProtobufSerializer;
import com.google.bitcoin.utils.EventListenerInvoker;
import com.google.common.base.Preconditions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -185,7 +184,6 @@ public class Wallet implements Serializable {
* once written.
*/
public synchronized void saveToFile(File f) throws IOException {
Preconditions.checkArgument(f.isFile());
FileOutputStream stream = null;
File temp = null;
try {