Skip to content

Removes jackson-utils dependency. #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Dec 6, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adds private constructor in utility class.
  • Loading branch information
Alex Soto committed Dec 4, 2014
commit 829cf107aebdcbc1b78347f99fee0b0d28a60acb
7 changes: 6 additions & 1 deletion src/main/java/com/github/fge/jsonpatch/diff/Sets.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@
import java.util.Set;
import java.util.TreeSet;

public class Sets
public final class Sets
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Class for implementing Sets operations for calculating diffs.

{

private Sets()
{
}

public static <E> Set<E> difference(final Set<E> set1, final Set<E> set2)
{
Set<E> temp = new TreeSet<E>(set1);
Expand Down