mirror of
https://github.com/octoleo/plantuml.git
synced 2024-12-22 10:59:01 +00:00
Compilation travis
This commit is contained in:
parent
c7e77afbf3
commit
8909624dee
@ -62,7 +62,7 @@ public class DateEventUtils {
|
|||||||
final List<String> asList = Arrays.asList("<u>June 29th, 1975",
|
final List<String> asList = Arrays.asList("<u>June 29th, 1975",
|
||||||
"\"It was the first time in history that anyone had typed",
|
"\"It was the first time in history that anyone had typed",
|
||||||
"a character on a keyboard and seen it show up on their",
|
"a character on a keyboard and seen it show up on their",
|
||||||
"own computer’s 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);
|
return TextBlockUtils.mergeTB(textBlock, getComment(asList, color), HorizontalAlignment.LEFT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -103,6 +103,7 @@ public class QuoteUtils {
|
|||||||
"Big mistake!");
|
"Big mistake!");
|
||||||
// Creativity : how many?
|
// Creativity : how many?
|
||||||
// How many folksingers does it take to change a lightbulb ?
|
// How many folksingers does it take to change a lightbulb ?
|
||||||
|
// Do you like movies about gladiators?
|
||||||
|
|
||||||
private QuoteUtils() {
|
private QuoteUtils() {
|
||||||
}
|
}
|
||||||
|
@ -53,6 +53,14 @@ public class ReadLineReader implements ReadLine {
|
|||||||
if (s != null) {
|
if (s != null) {
|
||||||
s = s.replace('\u2013', '-');
|
s = s.replace('\u2013', '-');
|
||||||
s = s.replace('\u00A0', ' ');
|
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;
|
return s;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user