fix: epic printf fail

This commit is contained in:
zaaarf 2023-03-16 15:55:34 +01:00
parent 6a06713210
commit 6d1d648af4
No known key found for this signature in database
GPG key ID: AD8563472FD43386

View file

@ -10,6 +10,6 @@ public class TargetNotFoundException extends RuntimeException {
* @param stub the stub's name (and descriptor possibly) * @param stub the stub's name (and descriptor possibly)
*/ */
public TargetNotFoundException(String stub) { public TargetNotFoundException(String stub) {
super(String.format("Could not find member corresponding to stub: %s.")); super(String.format("Could not find member corresponding to stub: %s.", stub));
} }
} }