Skip to content

Commit

Permalink
Update example to have a synthetic constructor when compiled
Browse files Browse the repository at this point in the history
i.e. Make @debuglog annotated inner class' constructor private.
  • Loading branch information
faradaj committed Jan 20, 2016
1 parent 1b2c9eb commit d1e472e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private String sayHello() {
static class Charmer {
private final String name;

Charmer(String name) {
private Charmer(String name) {
this.name = name;
}

Expand Down

0 comments on commit d1e472e

Please sign in to comment.