You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by pd...@apache.org on 2013/09/13 18:10:39 UTC

svn commit: r1522998 - /felix/site/trunk/content/documentation/subprojects/apache-felix-maven-scr-plugin/apache-felix-scr-bndtools-use.mdtext

Author: pderop
Date: Fri Sep 13 16:10:38 2013
New Revision: 1522998

URL: http://svn.apache.org/r1522998
Log:
fix formatting

Modified:
    felix/site/trunk/content/documentation/subprojects/apache-felix-maven-scr-plugin/apache-felix-scr-bndtools-use.mdtext

Modified: felix/site/trunk/content/documentation/subprojects/apache-felix-maven-scr-plugin/apache-felix-scr-bndtools-use.mdtext
URL: http://svn.apache.org/viewvc/felix/site/trunk/content/documentation/subprojects/apache-felix-maven-scr-plugin/apache-felix-scr-bndtools-use.mdtext?rev=1522998&r1=1522997&r2=1522998&view=diff
==============================================================================
--- felix/site/trunk/content/documentation/subprojects/apache-felix-maven-scr-plugin/apache-felix-scr-bndtools-use.mdtext (original)
+++ felix/site/trunk/content/documentation/subprojects/apache-felix-maven-scr-plugin/apache-felix-scr-bndtools-use.mdtext Fri Sep 13 16:10:38 2013
@@ -63,24 +63,21 @@ implementation will use the Apache Felix
 
 * Create the greeting.api.Greeting interface:
 
-    :::java
     package greeting.api;
-    
+
     public interface Greeting {
         void sayHello(String name);
     }
 
 * Create the greeting.impl.GreetingImpl class:
 
-    :::java    
     package greeting.impl;
     
     import greeting.api.Greeting;
-    
     import org.apache.felix.scr.annotations.Activate;
     import org.apache.felix.scr.annotations.Component;
     import org.apache.felix.scr.annotations.Service;
-    
+
     @Component(immediate=true)
     @Service
     public class GreetingImpl implements Greeting {