Skip to content

Commit 8486b4a

Browse files
tomeqtomeq
authored andcommitted
Fix buggies
1 parent 67f8447 commit 8486b4a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/com/Polodz/controller/MainController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public String getAuditRaport() {
146146
try {
147147
raport.addToAudience(Integer.valueOf(this.getServerResponse(current.getId().toString())));
148148
} catch (Exception e) {
149-
raport.addToErrorBuffor(current.getName() + "movie for id " + current.getId().toString() + "\n");
149+
raport.addToErrorBuffor(current.getName() + " for id " + current.getId().toString() + "\n");
150150
}
151151
});
152152

src/main/java/com/Polodz/model/AuditRaport.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class AuditRaport implements Serializable {
99
*/
1010
private static final long serialVersionUID = 5823829955504180090L;
1111

12-
private final String epiloque = "Full incomin: \n";
12+
private final String epiloque = "Full incoming: \n";
1313
private Integer numberOfFullAudience = 0;
1414

1515
private String errorBuffor = "Warning for: \n";
@@ -31,9 +31,9 @@ private String getErrorBuffor() {
3131
}
3232

3333
public String getRaportText() {
34-
String text = this.epiloque + this.getNumberOfFullAudience() + "\n";
34+
String text = this.epiloque + this.getNumberOfFullAudience() + "$ \n";
3535
if (errorBuffor.length() != "Warning for: \n".length())
36-
text += this.errorBuffor + " are corrupted. Please restart application. If problem would occure more times please conntact superadmin";
36+
text += this.errorBuffor + "are corrupted. Please restart application. If problem would occure more times please conntact superadmin";
3737
return text;
3838
}
3939

0 commit comments

Comments
 (0)