Remove use of 'this.XYZ' in plugin code

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@615142 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/maven-obr-plugin/src/main/java/org/apache/felix/obr/plugin/Capability.java b/maven-obr-plugin/src/main/java/org/apache/felix/obr/plugin/Capability.java
index ead50ab..4bf0f76 100644
--- a/maven-obr-plugin/src/main/java/org/apache/felix/obr/plugin/Capability.java
+++ b/maven-obr-plugin/src/main/java/org/apache/felix/obr/plugin/Capability.java
@@ -64,7 +64,7 @@
      */
     public void setName( String name )
     {
-        this.m_name = name;
+        m_name = name;
     }
 
 
@@ -87,7 +87,7 @@
      */
     public void setP( List mp )
     {
-        this.m_p = mp;
+        m_p = mp;
     }
 
 
@@ -112,10 +112,10 @@
     public Node getNode( Document father )
     {
         Element capability = father.createElement( "capability" );
-        capability.setAttribute( "name", this.getName() );
-        for ( int i = 0; i < this.getP().size(); i++ )
+        capability.setAttribute( "name", getName() );
+        for ( int i = 0; i < getP().size(); i++ )
         {
-            capability.appendChild( ( ( PElement ) ( this.getP().get( i ) ) ).getNode( father ) );
+            capability.appendChild( ( ( PElement ) ( getP().get( i ) ) ).getNode( father ) );
         }
         return capability;
     }