Empty constructor methods are better commented inside, according to Sonar
Showing
7 changed files
with
7 additions
and
7 deletions
... | @@ -33,8 +33,8 @@ public class ListPublisherActionsView implements Serializable { | ... | @@ -33,8 +33,8 @@ public class ListPublisherActionsView implements Serializable { |
33 | this.publisherService = publisherService; | 33 | this.publisherService = publisherService; |
34 | } | 34 | } |
35 | 35 | ||
36 | - //no args constructor to make it proxyable | ||
37 | ListPublisherActionsView() { | 36 | ListPublisherActionsView() { |
37 | + //no args constructor to make it proxyable | ||
38 | } | 38 | } |
39 | 39 | ||
40 | public void setView() { | 40 | public void setView() { | ... | ... |
... | @@ -35,8 +35,8 @@ public class ListPublisherVersionsView implements Serializable { | ... | @@ -35,8 +35,8 @@ public class ListPublisherVersionsView implements Serializable { |
35 | this.publisherService = publisherService; | 35 | this.publisherService = publisherService; |
36 | } | 36 | } |
37 | 37 | ||
38 | - //no args constructor to make it proxyable | ||
39 | ListPublisherVersionsView() { | 38 | ListPublisherVersionsView() { |
39 | + //no args constructor to make it proxyable | ||
40 | } | 40 | } |
41 | 41 | ||
42 | public PublisherAction getLastValidate(Publisher publisher) { | 42 | public PublisherAction getLastValidate(Publisher publisher) { | ... | ... |
... | @@ -41,8 +41,8 @@ public class PublisherServiceDefault implements PublisherService { | ... | @@ -41,8 +41,8 @@ public class PublisherServiceDefault implements PublisherService { |
41 | this.sharedService = sharedService; | 41 | this.sharedService = sharedService; |
42 | } | 42 | } |
43 | 43 | ||
44 | - //no args constructor to make it proxyable | ||
45 | PublisherServiceDefault() { | 44 | PublisherServiceDefault() { |
45 | + //no args constructor to make it proxyable | ||
46 | } | 46 | } |
47 | 47 | ||
48 | @Override | 48 | @Override | ... | ... |
... | @@ -57,8 +57,8 @@ public class PublisherVersionView implements Serializable { | ... | @@ -57,8 +57,8 @@ public class PublisherVersionView implements Serializable { |
57 | this.sharedService = sharedService; | 57 | this.sharedService = sharedService; |
58 | } | 58 | } |
59 | 59 | ||
60 | - //no args constructor to make it proxyable | ||
61 | PublisherVersionView() { | 60 | PublisherVersionView() { |
61 | + //no args constructor to make it proxyable | ||
62 | } | 62 | } |
63 | 63 | ||
64 | @PostConstruct | 64 | @PostConstruct | ... | ... |
... | @@ -50,8 +50,8 @@ public class UpdateUserBean { | ... | @@ -50,8 +50,8 @@ public class UpdateUserBean { |
50 | this.sharedService = sharedService; | 50 | this.sharedService = sharedService; |
51 | } | 51 | } |
52 | 52 | ||
53 | - //no args constructor to make it proxyable | ||
54 | UpdateUserBean() { | 53 | UpdateUserBean() { |
54 | + //no args constructor to make it proxyable | ||
55 | } | 55 | } |
56 | 56 | ||
57 | 57 | ... | ... |
... | @@ -18,8 +18,8 @@ public class AddCountryView implements Serializable { | ... | @@ -18,8 +18,8 @@ public class AddCountryView implements Serializable { |
18 | 18 | ||
19 | private transient String countryName; | 19 | private transient String countryName; |
20 | 20 | ||
21 | - //no args constructor to make it proxyable | ||
22 | public AddCountryView() { | 21 | public AddCountryView() { |
22 | + //no args constructor to make it proxyable | ||
23 | } | 23 | } |
24 | 24 | ||
25 | @Inject | 25 | @Inject | ... | ... |
... | @@ -17,8 +17,8 @@ public class ListCountriesView implements Serializable { | ... | @@ -17,8 +17,8 @@ public class ListCountriesView implements Serializable { |
17 | 17 | ||
18 | private transient List<Country> countries; | 18 | private transient List<Country> countries; |
19 | 19 | ||
20 | - //no args constructor to make it proxyable | ||
21 | public ListCountriesView() { | 20 | public ListCountriesView() { |
21 | + //no args constructor to make it proxyable | ||
22 | } | 22 | } |
23 | 23 | ||
24 | @Inject | 24 | @Inject | ... | ... |
-
Please register or login to post a comment