From bea5cbf6f224ea470bfbd06c06da7bf85d1c6e57 Mon Sep 17 00:00:00 2001
From: Daniel Stonier <d.stonier@gmail.com>
Date: Sun, 9 Feb 2014 14:53:03 +0900
Subject: [PATCH] remove unused debugging variables

---
 .../src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy b/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy
index 2024cb5..0c421b4 100644
--- a/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy
+++ b/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy
@@ -12,8 +12,8 @@ import org.gradle.api.*;
  *
  * It also performs the following actions
  * 
- * - checks and maeks sure the maven plugin is running
- * - constructs the sequence of dependant maven repos (local ros maven repos, mavenLocal, external ros maven repo)
+ * - checks and makes sure the maven plugin is running
+ * - constructs the sequence of dependent maven repos (local ros maven repos, mavenLocal, external ros maven repo)
  * - configures the uploadArchives for artifact deployment to the local ros maven repo (devel/share/maven)
  */
 class RosPlugin implements Plugin<Project> {
@@ -57,12 +57,10 @@ class RosExtension {
     List<String> mavenPath
     String mavenDeploymentRepository
     String mavenRepository
-    String mavenRepositoryD
     
     RosExtension() {
         /* Initialising the strings here gets rid of the dynamic property deprecated warnings. */
         this.mavenDeploymentRepository = ""
         this.mavenRepository = "https://github.com/rosjava/rosjava_mvn_repo/raw/master"
-        this.mavenRepositoryD = "https://github.com/rosjava/rosjava_mvn_repo/raw/master"
     }
 }
-- 
GitLab