SLING-1981 - do not fail if TestObjectProcessor is missing, happens when running tests with SlingRemoteExecutionRule

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1080246 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/sling/junit/remote/ide/SlingRemoteExecutionRule.java b/src/main/java/org/apache/sling/junit/remote/ide/SlingRemoteExecutionRule.java
index 9590ab8..529d785 100644
--- a/src/main/java/org/apache/sling/junit/remote/ide/SlingRemoteExecutionRule.java
+++ b/src/main/java/org/apache/sling/junit/remote/ide/SlingRemoteExecutionRule.java
@@ -27,6 +27,11 @@
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+/** JUnit MethodRule that executes tests remotely if the 
+ *  {@link #SLING_REMOTE_TEST_URL} property is set.
+ *  Used to execute tests from an IDE and have then run
+ *  on a remote Sling instance. 
+ */
 public class SlingRemoteExecutionRule implements MethodRule {
    private static final Logger log = 
        LoggerFactory.getLogger(SlingRemoteExecutionRule.class);