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;
|
package org.scientificcms.publications;
|
||||||
|
|
||||||
import org.hibernate.envers.Audited;
|
import org.hibernate.envers.Audited;
|
||||||
|
|
@ -104,13 +99,17 @@ public class InProceedings extends Publication {
|
||||||
@Override
|
@Override
|
||||||
public String toString(final String data) {
|
public String toString(final String data) {
|
||||||
|
|
||||||
return super.toString(String.format("proceedings = %s, "
|
return super.toString(
|
||||||
|
String.format(
|
||||||
|
"proceedings = %s, "
|
||||||
+ "startPage = %d, "
|
+ "startPage = %d, "
|
||||||
+ "endPage = %d%s",
|
+ "endPage = %d%s",
|
||||||
Objects.toString(proceedings),
|
Objects.toString(proceedings),
|
||||||
startPage,
|
startPage,
|
||||||
endPage,
|
endPage,
|
||||||
data));
|
data
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue