diff options
| author | Markus Duft | 2012-03-12 13:54:56 +0000 |
|---|---|---|
| committer | Markus Duft | 2012-03-12 13:54:56 +0000 |
| commit | d1403512f5946a75b0de507c1b5bf47574eeeb98 (patch) | |
| tree | a9f05b7a9f2ae1c1419e7914301b709f3c3a6e25 | |
| parent | 5c18fcb81b126a288445d0034ad6e9f6b47a7209 (diff) | |
| download | jgit-d1403512f5946a75b0de507c1b5bf47574eeeb98.tar.gz jgit-d1403512f5946a75b0de507c1b5bf47574eeeb98.tar.xz jgit-d1403512f5946a75b0de507c1b5bf47574eeeb98.zip | |
Fix compilation error due to missing javadoc.
Another change introduced this problem. With default JGit project
settings there is a compilation problem as javadoc problems are set to
Error in the project preferences.
Change-Id: I81e3ceeb02f7a2119b2a6cfefb7fbd9e83771fc9
| -rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/util/io/EolCanonicalizingInputStream.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/io/EolCanonicalizingInputStream.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/io/EolCanonicalizingInputStream.java index 2492393064..954c64676d 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/util/io/EolCanonicalizingInputStream.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/io/EolCanonicalizingInputStream.java @@ -72,9 +72,11 @@ public class EolCanonicalizingInputStream extends InputStream { /** * Creates a new InputStream, wrapping the specified stream - * + * * @param in * raw input stream + * @param detectBinary + * whether binaries should be detected */ public EolCanonicalizingInputStream(InputStream in, boolean detectBinary) { this.in = in; |
