Skip to content
This repository was archived by the owner on Nov 12, 2019. It is now read-only.

Commit 32466be

Browse files
committed
bugfix: parse method should be public
1 parent 58625f9 commit 32466be

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ A fork of [java-diff-utils](https://code.google.com/p/java-diff-utils/)
22

33
# Changelog
44

5+
## 1.4.1
6+
7+
- bugfix: parse method should be public
8+
59
## 1.4.0
610

711
- switch from JDK5 to JDK7

src/main/java/difflib/event/UnifiedPatchParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
public class UnifiedPatchParser {
1919

20-
void parse(File unifiedPatch, @Nonnull PatchHandler<String> handler) throws FileNotFoundException, IOException {
20+
public void parse(File unifiedPatch, @Nonnull PatchHandler<String> handler) throws FileNotFoundException, IOException {
2121
try (BufferedReader reader = Files.newReader(unifiedPatch, Charsets.UTF_8)) {
2222
String line = reader.readLine();
2323
do {

0 commit comments

Comments
 (0)