-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTODO.txt
36 lines (21 loc) · 1.21 KB
/
TODO.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
------------------------------------------------------------------------------
Copy other files (like .css files and perhaps .wtt and .ttf) as-is?
------------------------------------------------------------------------------
Maven example in README.txt.
------------------------------------------------------------------------------
Add support for includes/excludes.
------------------------------------------------------------------------------
Add a ServletFilter ?
------------------------------------------------------------------------------
From the transformFiles method, the following code snippet was removed.
Should that check be added back in?
if (!inFile.exists()) {
continue;
}
------------------------------------------------------------------------------
The following code was removed, should it be added back in?
// Output to stderr or stdout indicates a failure
String errorOutput = buffer.getErrString();
errorOutput = (errorOutput == null || "".equals(errorOutput)) ? buffer.getOutString() : errorOutput;
failure = failure ? true : !isEmpty(errorOutput);
------------------------------------------------------------------------------