Skip to content

Commit 05928f8

Browse files
committed
- fixes tabing
1 parent b343dcd commit 05928f8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/com/microsoft/graph/serializer/DefaultSerializer.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -318,12 +318,12 @@ public Class<?> getDerivedClass(JsonObject jsonObject, Class<?> parentClass) {
318318
//Identify the odata.type information if provided
319319
if (jsonObject.get(ODATA_TYPE_KEY) != null) {
320320
/** #microsoft.graph.user or #microsoft.graph.callrecords.callrecord */
321-
final String odataType = jsonObject.get(ODATA_TYPE_KEY).getAsString();
321+
final String odataType = jsonObject.get(ODATA_TYPE_KEY).getAsString();
322322
final Integer lastDotIndex = odataType.lastIndexOf(".");
323-
final String derivedType = (odataType.substring(0, lastDotIndex) +
324-
".models.extensions." +
325-
CaseFormat.LOWER_CAMEL.to(CaseFormat.UPPER_CAMEL,
326-
odataType.substring(lastDotIndex + 1)))
323+
final String derivedType = (odataType.substring(0, lastDotIndex) +
324+
".models.extensions." +
325+
CaseFormat.LOWER_CAMEL.to(CaseFormat.UPPER_CAMEL,
326+
odataType.substring(lastDotIndex + 1)))
327327
.replace("#", "com.");
328328
try {
329329
Class<?> derivedClass = Class.forName(derivedType);

0 commit comments

Comments
 (0)