Skip to content

Commit b812269

Browse files
committed
- indent is evil 😈
1 parent b9b566c commit b812269

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/main/java/com/microsoft/graph/serializer/EdmNativeTypeSerializer.java‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ public class EdmNativeTypeSerializer {
2424
@Nullable
2525
public static <T> T deserialize(@Nonnull final JsonElement json, @Nonnull final Class<T> type, @Nonnull final ILogger logger) {
2626
if (json == null || type == null) {
27-
return null;
27+
return null;
2828
} else if(json.isJsonPrimitive()) {
2929
return getPrimitiveValue(json, type);
30-
} else if(json.isJsonObject()) {
30+
} else if(json.isJsonObject()) {
3131
final JsonElement element = json.getAsJsonObject().get("@odata.null");
3232
if(element != null && element.isJsonPrimitive()) {
3333
return getPrimitiveValue(element, type);

0 commit comments

Comments
 (0)