Skip to content

Commit

Permalink
Former-commit-id: 469c5f908c988a258660001cd126a52767b6c77c
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jun 21, 2013
1 parent e782127 commit ef1bd68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ch/cyberduck/ui/cocoa/TransferTableDataSource.java
Expand Up @@ -161,7 +161,7 @@ public NSObject tableView_objectValueForTableColumn_row(NSTableView view, NSTabl
if(identifier.equals(TYPEAHEAD_COLUMN)) {
return cache.put(item, identifier, NSString.stringWithString(item.getName()));
}
throw new IllegalArgumentException("Unknown identifier: " + identifier);
throw new IllegalArgumentException(String.format("Unknown identifier %s", identifier));
}
return cached;
}
Expand Down

0 comments on commit ef1bd68

Please sign in to comment.