| 
      
      
      From: <lh...@us...> - 2010-07-20 13:22:20
      
     | 
| Revision: 401
          http://tinytim.svn.sourceforge.net/tinytim/?rev=401&view=rev
Author:   lheuer
Date:     2010-07-20 13:22:13 +0000 (Tue, 20 Jul 2010)
Log Message:
-----------
Made some params final
Modified Paths:
--------------
    tinytim/trunk/src/main/java/org/tinytim/core/TopicImpl.java
Modified: tinytim/trunk/src/main/java/org/tinytim/core/TopicImpl.java
===================================================================
--- tinytim/trunk/src/main/java/org/tinytim/core/TopicImpl.java	2010-07-14 17:05:56 UTC (rev 400)
+++ tinytim/trunk/src/main/java/org/tinytim/core/TopicImpl.java	2010-07-20 13:22:13 UTC (rev 401)
@@ -401,7 +401,7 @@
      * @see org.tmapi.core.Topic#getRolesPlayed(org.tmapi.core.Topic)
      */
     @Override
-    public Set<Role> getRolesPlayed(Topic type) {
+    public Set<Role> getRolesPlayed(final Topic type) {
         Check.typeNotNull(type);
         if (_rolesPlayed == null) {
             return Collections.emptySet();
@@ -419,7 +419,7 @@
      * @see org.tmapi.core.Topic#getRolesPlayed(org.tmapi.core.Topic, org.tmapi.core.Topic)
      */
     @Override
-    public Set<Role> getRolesPlayed(Topic type, Topic assoc) {
+    public Set<Role> getRolesPlayed(final Topic type, final Topic assoc) {
         Check.typeNotNull(type);
         if (assoc == null) {
             throw new IllegalArgumentException("The association type must not be null");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 |