Author: batosai
Date: 2008-09-24 19:52:19 +0000 (Wed, 24 Sep 2008)
New Revision: 22822

Modified:
   trunk/plugins/WoT/Trust.java
Log:
Same thing here.

Modified: trunk/plugins/WoT/Trust.java
===================================================================
--- trunk/plugins/WoT/Trust.java        2008-09-24 19:48:00 UTC (rev 22821)
+++ trunk/plugins/WoT/Trust.java        2008-09-24 19:52:19 UTC (rev 22822)
@@ -25,8 +25,8 @@
         * This allows us to load only what's needed in memory instead of 
everything.
         * Maybe db4o can handle this, I don't know ATM.
         */
-       private Identity truster;
-       private Identity trustee;
+       private final Identity truster;
+       private final Identity trustee;
        private int value;
        private String comment;

@@ -84,13 +84,6 @@
        }

        /**
-        * @param truster Identity that gives this trust
-        */
-       public void setTruster(Identity truster) {
-               this.truster = truster;
-       }
-
-       /**
         * @return trustee The Identity that receives this trust
         */
        public Identity getTrustee() {
@@ -98,13 +91,6 @@
        }

        /**
-        * @param trustee Identity that receives this trust
-        */
-       public void setTrustee(Identity trustee) {
-               this.trustee = trustee;
-       }
-
-       /**
         * @return value Numeric value of this trust relationship
         */
        public int getValue() {


Reply via email to