Skip to content

Commit

Permalink
Backporting script expression fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Mar 29, 2013
1 parent e23afee commit 162a868
Show file tree
Hide file tree
Showing 5 changed files with 204 additions and 148 deletions.
Expand Up @@ -235,7 +235,7 @@ public static <V extends PrismValue> ItemDeltaItem<V> toItemDeltaItem(Object obj
} else if (object instanceof ItemDelta<?>) {
return new ItemDeltaItem<V>(null, (ItemDelta<V>)object, null);
} else {
throw new IllegalArgumentException("Unexpected object "+object);
throw new IllegalArgumentException("Unexpected object "+object+" "+object.getClass());
}

}
Expand Down

0 comments on commit 162a868

Please sign in to comment.