Fix English

This commit is contained in:
Reinhard Pointner 2016-09-28 13:14:42 +08:00
parent 8d8541291a
commit 477aa7019c
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class MatchAction extends AbstractAction {
try {
withWaitCursor(evt.getSource(), () -> {
Matcher<Object, File> matcher = new Matcher<Object, File>(model.values(), model.candidates(), false, EpisodeMetrics.defaultSequence(true));
List<Match<Object, File>> matches = ProgressMonitor.runTask("Match", "Find optimal alignment. This may take a while.", (message, progress, cancelled) -> {
List<Match<Object, File>> matches = ProgressMonitor.runTask("Match", "Finding optimal alignment. This may take a while.", (message, progress, cancelled) -> {
message.accept(String.format("Checking %d combinations...", matcher.remainingCandidates().size() * matcher.remainingValues().size()));
return matcher.match();
}).get();