Skip to content

Commit

Permalink
Fix #6164.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Aug 22, 2011
1 parent 9f85a65 commit 0807384
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/org/spearce/jgit/transport/OpenSshConfig.java
Expand Up @@ -179,6 +179,9 @@ private Map<String, Host> parse(final InputStream in) throws IOException {
}

final String[] parts = line.split("[ \t]*[= \t]", 2);
if(parts.length != 2) {
continue;
}
final String keyword = parts[0].trim();
final String argValue = parts[1].trim();

Expand Down

0 comments on commit 0807384

Please sign in to comment.