Browse Source

added message about cvs, fixed compiler options


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194579 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
Keiron Liddle 22 years ago
parent
commit
1cf74b884a
2 changed files with 3 additions and 2 deletions
  1. 2
    2
      build.xml
  2. 1
    0
      src/org/apache/fop/apps/Fop.java

+ 2
- 2
build.xml View File

@@ -184,8 +184,8 @@ Sometimes ant gives out this warnings, but the build is finished without any pro

<property name="build.compiler" value="classic"/>
<property name="debug" value="on"/>
<property name="optimize" value="on"/>
<property name="deprecation" value="on"/>
<property name="optimize" value="off"/>
<property name="deprecation" value="off"/>

<property name="src.dir" value="./src"/>
<property name="src.codegen" value="./src/codegen"/>

+ 1
- 0
src/org/apache/fop/apps/Fop.java View File

@@ -9,6 +9,7 @@ package org.apache.fop.apps;

public class Fop {
public static void main(String[] args) {
System.out.println("CVS FOP DOES NOT WORK - DO NOT EXPECT ANYTHING");
CommandLineOptions options = null;

try {

Loading…
Cancel
Save