Fix an Eclipse warning about an unused param by documenting it.

Test Plan: Sandcastle builds.
diff --git a/src/com/facebook/buck/rules/DirArtifactCache.java b/src/com/facebook/buck/rules/DirArtifactCache.java
index db4f867..1246693 100644
--- a/src/com/facebook/buck/rules/DirArtifactCache.java
+++ b/src/com/facebook/buck/rules/DirArtifactCache.java
@@ -128,12 +128,17 @@
     }
   }
 
-  /** @return {@code true}: storing artifacts is always supported by this class. */
+  /**
+   * @return {@code true}: storing artifacts is always supported by this class.
+   */
   @Override
   public boolean isStoreSupported() {
     return true;
   }
 
+  /**
+   * @param finished Signals that the build has finished.
+   */
   @Subscribe
   public synchronized void buildFinished(BuildEvent.Finished finished) {
     deleteOldFiles();