Compilation travis

This commit is contained in:
Arnaud 2013-12-11 19:06:45 +01:00
parent c7e77afbf3
commit 8909624dee
3 changed files with 10 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class DateEventUtils {
final List<String> asList = Arrays.asList("<u>June 29th, 1975",
"\"It was the first time in history that anyone had typed",
"a character on a keyboard and seen it show up on their",
"own computers screen right in front of them.\"", "\t\t\t\t\t\t\t\t\t\t<i>Steve Wozniak");
"own computer's screen right in front of them.\"", "\t\t\t\t\t\t\t\t\t\t<i>Steve Wozniak");
return TextBlockUtils.mergeTB(textBlock, getComment(asList, color), HorizontalAlignment.LEFT);
}

View File

@ -103,6 +103,7 @@ public class QuoteUtils {
"Big mistake!");
// Creativity : how many?
// How many folksingers does it take to change a lightbulb ?
// Do you like movies about gladiators?
private QuoteUtils() {
}

View File

@ -53,6 +53,14 @@ public class ReadLineReader implements ReadLine {
if (s != null) {
s = s.replace('\u2013', '-');
s = s.replace('\u00A0', ' ');
s = s.replace('\u201c', '\"');
s = s.replace('\u201d', '\"');
s = s.replace('\u00ab', '\"');
s = s.replace('\u00bb', '\"');
// for (int i = 0; i < s.length(); i++) {
// char c = s.charAt(i);
// System.err.println("X " + Integer.toHexString((int) c) + " " + c);
// }
}
return s;
}