Formatting
parent
f30274d7a6
commit
4593e7bd6d
|
|
@ -1,8 +1,3 @@
|
|||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package org.scientificcms.publications;
|
||||
|
||||
import org.hibernate.envers.Audited;
|
||||
|
|
@ -104,13 +99,17 @@ public class InProceedings extends Publication {
|
|||
@Override
|
||||
public String toString(final String data) {
|
||||
|
||||
return super.toString(String.format("proceedings = %s, "
|
||||
return super.toString(
|
||||
String.format(
|
||||
"proceedings = %s, "
|
||||
+ "startPage = %d, "
|
||||
+ "endPage = %d%s",
|
||||
Objects.toString(proceedings),
|
||||
startPage,
|
||||
endPage,
|
||||
data));
|
||||
data
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue