Respect de l'ordre recommendé par Java Language Specification
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -22,11 +22,11 @@ public class ListPublisherActionsView implements Serializable { | ... | @@ -22,11 +22,11 @@ public class ListPublisherActionsView implements Serializable { |
22 | 22 | ||
23 | transient Logger logger = LoggerFactory.getLogger(getClass()); | 23 | transient Logger logger = LoggerFactory.getLogger(getClass()); |
24 | 24 | ||
25 | - transient protected PublisherService publisherService; | 25 | + protected transient PublisherService publisherService; |
26 | 26 | ||
27 | private Integer publisherId; | 27 | private Integer publisherId; |
28 | private boolean viewAll; | 28 | private boolean viewAll; |
29 | - transient private List<PublisherAction> publisherActions; | 29 | + private transient List<PublisherAction> publisherActions; |
30 | 30 | ||
31 | @Inject | 31 | @Inject |
32 | public ListPublisherActionsView(PublisherService publisherService) { | 32 | public ListPublisherActionsView(PublisherService publisherService) { | ... | ... |
-
Please register or login to post a comment