Browse Source

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
tags/v2.0.0.201206130900-r
Markus Duft 12 years ago
parent
commit
d1403512f5

+ 3
- 1
org.eclipse.jgit/src/org/eclipse/jgit/util/io/EolCanonicalizingInputStream.java View File



/** /**
* Creates a new InputStream, wrapping the specified stream * Creates a new InputStream, wrapping the specified stream
*
*
* @param in * @param in
* raw input stream * raw input stream
* @param detectBinary
* whether binaries should be detected
*/ */
public EolCanonicalizingInputStream(InputStream in, boolean detectBinary) { public EolCanonicalizingInputStream(InputStream in, boolean detectBinary) {
this.in = in; this.in = in;

Loading…
Cancel
Save