From f942e0fd529af85a36d9bba4a640444a725ff062 Mon Sep 17 00:00:00 2001 From: Serj Lotutovici Date: Sun, 30 Apr 2017 03:45:06 +0200 Subject: [PATCH] Make Types.equals(Type, Type) public. (#292) --- moshi/src/main/java/com/squareup/moshi/Types.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moshi/src/main/java/com/squareup/moshi/Types.java b/moshi/src/main/java/com/squareup/moshi/Types.java index 6722654..350d34d 100644 --- a/moshi/src/main/java/com/squareup/moshi/Types.java +++ b/moshi/src/main/java/com/squareup/moshi/Types.java @@ -205,7 +205,7 @@ public final class Types { } /** Returns true if {@code a} and {@code b} are equal. */ - static boolean equals(Type a, Type b) { + public static boolean equals(Type a, Type b) { if (a == b) { return true; // Also handles (a == null && b == null).