Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java
index 9a2aff4fae..2070d80157 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011, Google Inc.
+ * Copyright (C) 2011, 2012 Google Inc. and others.
* and other copyright owners as documented in the project's IP log.
*
* This program and the accompanying materials are made available
@@ -47,10 +47,12 @@ import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
+import org.eclipse.jgit.storage.pack.PackExt;
+
/**
* Output stream to create a file on the DFS.
*
- * @see DfsObjDatabase#writeFile(DfsPackDescription, String)
+ * @see DfsObjDatabase#writeFile(DfsPackDescription, PackExt)
*/
public abstract class DfsOutputStream extends OutputStream {
/**

Back to the top