Author: batosai
Date: 2008-09-05 15:56:30 +0000 (Fri, 05 Sep 2008)
New Revision: 22468
Modified:
trunk/apps/WoT/src/plugins/WoT/Identity.java
Log:
Doh ! Forgot we were talking about percents here...
Modified: trunk/apps/WoT/src/plugins/WoT/Identity.java
===================================================================
--- trunk/apps/WoT/src/plugins/WoT/Identity.java 2008-09-05 15:50:50 UTC
(rev 22467)
+++ trunk/apps/WoT/src/plugins/WoT/Identity.java 2008-09-05 15:56:30 UTC
(rev 22468)
@@ -227,7 +227,7 @@
while(receivedTrusts.hasNext()) {
Trust trust = receivedTrusts.next();
try {
- value += trust.getValue() *
trust.getTruster().getScore(treeOwner, db).getCapacity();
+ value += trust.getValue() *
trust.getTruster().getScore(treeOwner, db).getCapacity() / 100;
} catch (NotInTrustTreeException e) {}
}
return value;