Skip to content

Commit

Permalink
fixing car-demo
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyanggu committed May 6, 2010
1 parent d7d63ec commit 41bcc0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -171,7 +171,7 @@ public void load(String fieldName, IndexReader reader, TermListFactory<T> listFa
this.freqs = freqList.toIntArray();
this.minIDs = minIDList.toIntArray();
this.maxIDs = maxIDList.toIntArray();
logger.info("loaded " + fieldName + " of type " + listFactory.getType() + " from " + reader +" in " + (System.currentTimeMillis()-t0) + " ms");
logger.info("loaded " + fieldName + " of type " + list.getType() + " from " + reader +" in " + (System.currentTimeMillis()-t0) + " ms");
}

/**
Expand Down
6 changes: 3 additions & 3 deletions build.xml
Expand Up @@ -176,7 +176,7 @@
</antcall>
</target>

<target name="make-car-war" unless="${car.war.exists}">
<target name="make-car-war" description="==> make-car-war" unless="${car.war.exists}">
<mkdir dir="cardemo/cars" />
<antcall target="create-ui">
<param name="ui.name" value="cars"/>
Expand All @@ -186,7 +186,7 @@
<delete dir="cardemo/cars" />
</target>

<target name="bobo-demo" depends="jars">
<target name="bobo-demo" description="==> bobo-demo" depends="jars">
<ant antfile="build.xml"
dir="${bobo-demo}" target="dist"/>
</target>
Expand All @@ -196,7 +196,7 @@
dir="${bobo-demo}" target="hosted"/>
</target>

<target name="run-cardemo" depends="dist,make-car-war" >
<target name="run-cardemo" description="==> run car demo" depends="dist,make-car-war" >
<mkdir dir="${logs}" />
<java fork="true" jar="${bobo.root}/zoie-server.jar" failonerror="true" maxmemory="1000m">
<sysproperty key="log.home" value="${logs}" />
Expand Down

0 comments on commit 41bcc0a

Please sign in to comment.