Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-02-07 15:01:15 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f1a8add909fbed248281766ab60a26e7a1fd724c
f1a8add9
1 parent
7d3090f7
Empty constructor methods are better commented inside, according to Sonar
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
src/main/java/org/legrog/web/publisher/ListPublisherActionsView.java
src/main/java/org/legrog/web/publisher/ListPublisherVersionsView.java
src/main/java/org/legrog/web/publisher/PublisherServiceDefault.java
src/main/java/org/legrog/web/publisher/PublisherVersionView.java
src/main/java/org/legrog/web/user/UpdateUserBean.java
src/main/java/org/legrog/web/xyz/AddCountryView.java
src/main/java/org/legrog/web/xyz/ListCountriesView.java
src/main/java/org/legrog/web/publisher/ListPublisherActionsView.java
View file @
f1a8add
...
...
@@ -33,8 +33,8 @@ public class ListPublisherActionsView implements Serializable {
this
.
publisherService
=
publisherService
;
}
//no args constructor to make it proxyable
ListPublisherActionsView
()
{
//no args constructor to make it proxyable
}
public
void
setView
()
{
...
...
src/main/java/org/legrog/web/publisher/ListPublisherVersionsView.java
View file @
f1a8add
...
...
@@ -35,8 +35,8 @@ public class ListPublisherVersionsView implements Serializable {
this
.
publisherService
=
publisherService
;
}
//no args constructor to make it proxyable
ListPublisherVersionsView
()
{
//no args constructor to make it proxyable
}
public
PublisherAction
getLastValidate
(
Publisher
publisher
)
{
...
...
src/main/java/org/legrog/web/publisher/PublisherServiceDefault.java
View file @
f1a8add
...
...
@@ -41,8 +41,8 @@ public class PublisherServiceDefault implements PublisherService {
this
.
sharedService
=
sharedService
;
}
//no args constructor to make it proxyable
PublisherServiceDefault
()
{
//no args constructor to make it proxyable
}
@Override
...
...
src/main/java/org/legrog/web/publisher/PublisherVersionView.java
View file @
f1a8add
...
...
@@ -57,8 +57,8 @@ public class PublisherVersionView implements Serializable {
this
.
sharedService
=
sharedService
;
}
//no args constructor to make it proxyable
PublisherVersionView
()
{
//no args constructor to make it proxyable
}
@PostConstruct
...
...
src/main/java/org/legrog/web/user/UpdateUserBean.java
View file @
f1a8add
...
...
@@ -50,8 +50,8 @@ public class UpdateUserBean {
this
.
sharedService
=
sharedService
;
}
//no args constructor to make it proxyable
UpdateUserBean
()
{
//no args constructor to make it proxyable
}
...
...
src/main/java/org/legrog/web/xyz/AddCountryView.java
View file @
f1a8add
...
...
@@ -18,8 +18,8 @@ public class AddCountryView implements Serializable {
private
transient
String
countryName
;
//no args constructor to make it proxyable
public
AddCountryView
()
{
//no args constructor to make it proxyable
}
@Inject
...
...
src/main/java/org/legrog/web/xyz/ListCountriesView.java
View file @
f1a8add
...
...
@@ -17,8 +17,8 @@ public class ListCountriesView implements Serializable {
private
transient
List
<
Country
>
countries
;
//no args constructor to make it proxyable
public
ListCountriesView
()
{
//no args constructor to make it proxyable
}
@Inject
...
...
Please
register
or
login
to post a comment