Formatting

pull/1/head
Jens Pelzetter 2022-08-11 19:34:49 +02:00
parent f30274d7a6
commit 4593e7bd6d
1 changed files with 6 additions and 7 deletions

View File

@ -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
)
);
}
}