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
2016-12-02 16:06:06 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5f601510767c15057603cf23cb2ec9cf69ad0cfc
5f601510
1 parent
5ba27725
sonarQube : Reorder the modifiers to comply with the Java Language Specification.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
src/main/java/org/legrog/web/publisher/PublisherVersionView.java
src/main/java/org/legrog/web/publisher/PublisherVersionView.java
View file @
5f60151
...
...
@@ -7,7 +7,6 @@ import org.slf4j.LoggerFactory;
import
javax.annotation.PostConstruct
;
import
javax.faces.view.ViewScoped
;
//import javax.faces.context.FacesContext;
import
javax.inject.Inject
;
import
javax.inject.Named
;
import
java.io.Serializable
;
...
...
@@ -38,20 +37,20 @@ public class PublisherVersionView implements Serializable {
private
String
publisherPostOfficeBoxNumber
;
private
String
publisherAddressRegion
;
private
String
publisherAddressLocality
;
transient
private
Country
publisherAddressCountry
;
private
transient
Country
publisherAddressCountry
;
private
String
publisherTelephone
;
private
String
publisherEmail
;
private
String
publisherURL
;
private
boolean
publisherActive
;
private
String
publisherHistory
;
transient
private
Person
publisherVersionAuthor
;
private
transient
Person
publisherVersionAuthor
;
private
Timestamp
publisherVersionDatetime
;
transient
private
Publisher
publisher
;
private
transient
Publisher
publisher
;
transient
private
List
<
Country
>
availableCountries
;
private
transient
List
<
Country
>
availableCountries
;
transient
private
List
<
PublisherAction
>
publisherActions
;
private
transient
List
<
PublisherAction
>
publisherActions
;
@Inject
public
PublisherVersionView
(
PublisherService
publisherService
,
SharedService
sharedService
)
{
...
...
Please
register
or
login
to post a comment