Skip to content
Snippets Groups Projects
Commit bea5cbf6 authored by Daniel Stonier's avatar Daniel Stonier
Browse files

remove unused debugging variables

parent db38dc99
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,8 @@ import org.gradle.api.*; ...@@ -12,8 +12,8 @@ import org.gradle.api.*;
* *
* It also performs the following actions * It also performs the following actions
* *
* - checks and maeks sure the maven plugin is running * - checks and makes sure the maven plugin is running
* - constructs the sequence of dependant maven repos (local ros maven repos, mavenLocal, external ros maven repo) * - 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) * - configures the uploadArchives for artifact deployment to the local ros maven repo (devel/share/maven)
*/ */
class RosPlugin implements Plugin<Project> { class RosPlugin implements Plugin<Project> {
...@@ -57,12 +57,10 @@ class RosExtension { ...@@ -57,12 +57,10 @@ class RosExtension {
List<String> mavenPath List<String> mavenPath
String mavenDeploymentRepository String mavenDeploymentRepository
String mavenRepository String mavenRepository
String mavenRepositoryD
RosExtension() { RosExtension() {
/* Initialising the strings here gets rid of the dynamic property deprecated warnings. */ /* Initialising the strings here gets rid of the dynamic property deprecated warnings. */
this.mavenDeploymentRepository = "" this.mavenDeploymentRepository = ""
this.mavenRepository = "https://github.com/rosjava/rosjava_mvn_repo/raw/master" this.mavenRepository = "https://github.com/rosjava/rosjava_mvn_repo/raw/master"
this.mavenRepositoryD = "https://github.com/rosjava/rosjava_mvn_repo/raw/master"
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment