diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-12-20 15:15:01 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-12-20 15:15:01 +0000 |
commit | b5e06bef470e983f05bcb1793adaaebc17194418 (patch) | |
tree | 1868f156bda4040c1366ec988e3d8bf05a865113 /java/ant/Slice2FreezeJTask.java | |
parent | Fixed error in argument loop. Still some other problem left. Even though (diff) | |
download | ice-b5e06bef470e983f05bcb1793adaaebc17194418.tar.bz2 ice-b5e06bef470e983f05bcb1793adaaebc17194418.tar.xz ice-b5e06bef470e983f05bcb1793adaaebc17194418.zip |
Fixed build failure
Diffstat (limited to 'java/ant/Slice2FreezeJTask.java')
-rw-r--r-- | java/ant/Slice2FreezeJTask.java | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/java/ant/Slice2FreezeJTask.java b/java/ant/Slice2FreezeJTask.java index 3e76674b9be..bfef30d3610 100644 --- a/java/ant/Slice2FreezeJTask.java +++ b/java/ant/Slice2FreezeJTask.java @@ -397,6 +397,21 @@ public class Slice2FreezeJTask extends SliceTask } // + // Add the --dict options. + // + cmd.append(dictString); + + // + // Add the --dict-index options. + // + cmd.append(dictIndexString); + + // + // Add the --index options. + // + cmd.append(indexString); + + // // Add the slice files. // p = sliceFiles.iterator(); @@ -414,21 +429,7 @@ public class Slice2FreezeJTask extends SliceTask cmd.append(s); } } - - // - // Add the --dict options. - // - cmd.append(dictString); - - // - // Add the --dict-index options. - // - cmd.append(dictIndexString); - - // - // Add the --index options. - // - cmd.append(indexString); + // // It's not possible anymore to re-use the same output property since Ant 1.5.x. so we use a |