Skip to content
This repository has been archived by the owner on Jun 16, 2019. It is now read-only.

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxr1998 authored Jul 25, 2017
1 parent d3229d7 commit 103d9eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/afollestad/ason/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ static boolean shouldIgnore(Field field) {
return field.isSynthetic() // synthetic fields
|| field.getName().startsWith("this$")
|| field.getName().equals("$jacocoData") // used with Jacoco testing
|| field.getName().equals("serialVersionUID") // used by Instant run
|| field.getName().equals("$change") // in Android Studio
|| field.getName().equals("$change") // used by Instant run in Android Studio
|| field.getName().equals("serialVersionUID")
|| field.getAnnotation(AsonIgnore.class) != null;
}

Expand Down

0 comments on commit 103d9eb

Please sign in to comment.