@Override
public void setPreference(long userID, long itemID, float value) throws TasteException {
if (userID == TEMP_USER_ID) {
if (tempPrefs == null) {
throw new NoSuchUserException();
}
throw new UnsupportedOperationException();
}
delegate.setPreference(userID, itemID, value);
}