sonarQube : Reorder the modifiers to comply with the Java Language Specification.
Showing
1 changed file
with
5 additions
and
6 deletions
... | @@ -7,7 +7,6 @@ import org.slf4j.LoggerFactory; | ... | @@ -7,7 +7,6 @@ import org.slf4j.LoggerFactory; |
7 | 7 | ||
8 | import javax.annotation.PostConstruct; | 8 | import javax.annotation.PostConstruct; |
9 | import javax.faces.view.ViewScoped; | 9 | import javax.faces.view.ViewScoped; |
10 | -//import javax.faces.context.FacesContext; | ||
11 | import javax.inject.Inject; | 10 | import javax.inject.Inject; |
12 | import javax.inject.Named; | 11 | import javax.inject.Named; |
13 | import java.io.Serializable; | 12 | import java.io.Serializable; |
... | @@ -38,20 +37,20 @@ public class PublisherVersionView implements Serializable { | ... | @@ -38,20 +37,20 @@ public class PublisherVersionView implements Serializable { |
38 | private String publisherPostOfficeBoxNumber; | 37 | private String publisherPostOfficeBoxNumber; |
39 | private String publisherAddressRegion; | 38 | private String publisherAddressRegion; |
40 | private String publisherAddressLocality; | 39 | private String publisherAddressLocality; |
41 | - transient private Country publisherAddressCountry; | 40 | + private transient Country publisherAddressCountry; |
42 | private String publisherTelephone; | 41 | private String publisherTelephone; |
43 | private String publisherEmail; | 42 | private String publisherEmail; |
44 | private String publisherURL; | 43 | private String publisherURL; |
45 | private boolean publisherActive; | 44 | private boolean publisherActive; |
46 | private String publisherHistory; | 45 | private String publisherHistory; |
47 | - transient private Person publisherVersionAuthor; | 46 | + private transient Person publisherVersionAuthor; |
48 | private Timestamp publisherVersionDatetime; | 47 | private Timestamp publisherVersionDatetime; |
49 | 48 | ||
50 | - transient private Publisher publisher; | 49 | + private transient Publisher publisher; |
51 | 50 | ||
52 | - transient private List<Country> availableCountries; | 51 | + private transient List<Country> availableCountries; |
53 | 52 | ||
54 | - transient private List<PublisherAction> publisherActions; | 53 | + private transient List<PublisherAction> publisherActions; |
55 | 54 | ||
56 | @Inject | 55 | @Inject |
57 | public PublisherVersionView(PublisherService publisherService, SharedService sharedService) { | 56 | public PublisherVersionView(PublisherService publisherService, SharedService sharedService) { | ... | ... |
-
Please register or login to post a comment