You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by ch...@apache.org on 2015/09/17 10:33:38 UTC

svn commit: r1703521 - /olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext

Author: chrish
Date: Thu Sep 17 08:33:38 2015
New Revision: 1703521

URL: http://svn.apache.org/r1703521
Log:
CMS commit to olingo by chrish

Modified:
    olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext

Modified: olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext?rev=1703521&r1=1703520&r2=1703521&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext Thu Sep 17 08:33:38 2015
@@ -773,12 +773,12 @@ The method *createId* allows us to creat
 
 
     :::java
-   /**   
-    * Helper method for providing some sample data   
-    * @param edmEntitySet for which the data is requested    
-    * @return data of requested entity set   
-    */   
-   private EntityCollection getData(EdmEntitySet edmEntitySet){
+    /**   
+     * Helper method for providing some sample data   
+     * @param edmEntitySet for which the data is requested    
+     * @return data of requested entity set   
+     */   
+    private EntityCollection getData(EdmEntitySet edmEntitySet){
     
        EntityCollection productsCollection = new EntityCollection();
        // check for which EdmEntitySet the data is requested
@@ -812,7 +812,7 @@ The method *createId* allows us to creat
        }
 
        return productsCollection;
-   }
+    }
 
 **_createId()_**