Fixed javadoc warning

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-insert-rstudio-se-plugin@157756 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-10-27 15:59:05 +00:00
parent 1bf7501047
commit def82579a6
2 changed files with 4 additions and 3 deletions

View File

@ -17,7 +17,7 @@ public class AggregatorPersistenceBackendQueryConfiguration extends AccountingPe
} }
/** /**
* @param class1 The class of the persistence to instantiate * @param persistence The class of the persistence to instantiate
* @throws Exception if fails * @throws Exception if fails
*/ */
@SuppressWarnings({ "unchecked", "rawtypes" }) @SuppressWarnings({ "unchecked", "rawtypes" })

View File

@ -12,7 +12,7 @@ public class Utility {
/** /**
* Generate a key for map-reduce * Generate a key for map-reduce
* @param key * @param key
* @return * @return JsonArray
*/ */
protected static JsonArray generateKey(String scope,String key){ protected static JsonArray generateKey(String scope,String key){
JsonArray generateKey = JsonArray.create(); JsonArray generateKey = JsonArray.create();
@ -26,10 +26,11 @@ public class Utility {
return generateKey; return generateKey;
} }
/** /**
* Verify a record aggregated for insert into bucket * Verify a record aggregated for insert into bucket
* @param item * @param item
* @return * @return boolean
*/ */
public static boolean checkType(Object item) { public static boolean checkType(Object item) {
return item == null return item == null