Browse Source

Fixed javadoc

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271218 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
408a4c09b0
1 changed files with 2 additions and 6 deletions
  1. +2
    -6
      src/main/org/apache/tools/ant/taskdefs/XSLTLiaison.java

+ 2
- 6
src/main/org/apache/tools/ant/taskdefs/XSLTLiaison.java View File

@@ -69,12 +69,8 @@ public interface XSLTLiaison {
* the file protocol prefix for systemid.
* This file protocol must be appended to an absolute path.
* Typically: <tt>FILE_PROTOCOL_PREFIX + file.getAbsolutePath()</tt>
* This is not correct in specification terms since an absolute
* url in Unix is file:// + file.getAbsolutePath() while it is
* file:/// + file.getAbsolutePath() under Windows.
* Whatever, it should not be a problem to put file:/// in every
* case since most parsers for now incorrectly makes no difference
* between it.. and users also have problem with that :)
* Note that on Windows, an extra '/' must be appended to the
* protocol prefix so that there is always 3 consecutive slashes.
*/
String FILE_PROTOCOL_PREFIX = "file://";



Loading…
Cancel
Save