Mercurial > hg > Members > sugi > javafx
changeset 28:5902144dc286
bug fixed
author | sugi |
---|---|
date | Tue, 05 Nov 2013 10:58:17 +0900 |
parents | 46f7a75d9a82 |
children | fe96dd350d9d |
files | .classpath lib/Alice.jar src/alice/test/topology/aquarium/fx/Share.java |
diffstat | 3 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/.classpath Tue Nov 05 03:57:25 2013 +0900 +++ b/.classpath Tue Nov 05 10:58:17 2013 +0900 @@ -3,7 +3,7 @@ <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> <classpathentry kind="con" path="at.bestsolution.efxclipse.tooling.jdt.core.JAVAFX_CONTAINER"/> - <classpathentry kind="lib" path="lib/Alice.jar"/> + <classpathentry kind="lib" path="lib/Alice.jar" sourcepath="/Alice/src"/> <classpathentry kind="lib" path="lib/com.alexmerz.graphviz.jar"/> <classpathentry kind="lib" path="lib/javassist.jar"/> <classpathentry kind="lib" path="lib/log4j-1.2.16.jar"/>
--- a/src/alice/test/topology/aquarium/fx/Share.java Tue Nov 05 03:57:25 2013 +0900 +++ b/src/alice/test/topology/aquarium/fx/Share.java Tue Nov 05 10:58:17 2013 +0900 @@ -25,7 +25,7 @@ RoutingTable rt = this.list.asClass(RoutingTable.class); for (RoutingData r : rt.table) { if (!r.name.equals(data.from)) { - ods.update(r.name, data.key, data.val); + ods.update(r.name, data.key, data.getVal()); } }