Add minimal implementation to fix failing test

This commit is contained in:
dotasek 2024-02-06 15:48:27 -05:00
parent 5a68df7062
commit 56ddfac49a
1 changed files with 5 additions and 1 deletions

View File

@ -821,7 +821,11 @@ public class VersionSpecificWorkerContextWrapper extends I18nBase implements IWo
@Override
public <T extends Resource> T findTxResource(Class<T> class_, String canonical) {
throw new UnsupportedOperationException(Msg.code(2489));
if (canonical == null) {
return null;
}
return fetchResource(class_, canonical);
}
@Override