Author: jleroux
Date: Thu Aug 10 07:21:22 2017 New Revision: 1804637 URL: http://svn.apache.org/viewvc?rev=1804637&view=rev Log: No functional trivial changes When reviewing code, Eclipse complains: "Javadoc: Invalid param tag name" when a param tag name "contains" a colon at end Weirdly it does not complain about @return. Go figure! But I'll apply the same! This removes all cases found in trunk. Another way could be to add a space between the tag and the colon. But that's not how it's recommended to write http://www.oracle.com/technetwork/articles/java/index-137868.html Modified: ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceWorker.java ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/AdminClient.java ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java Modified: ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceWorker.java URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceWorker.java?rev=1804637&r1=1804636&r2=1804637&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceWorker.java (original) +++ ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceWorker.java Thu Aug 10 07:21:22 2017 @@ -586,7 +586,7 @@ public final class InvoiceWorker { /** * Return a list of taxes separated by Geo and party and return the tax grand total * @param invoice Generic Value - * @return Map: taxByTaxAuthGeoAndPartyList(List) and taxGrandTotal(BigDecimal) + * @return Map taxByTaxAuthGeoAndPartyList(List) and taxGrandTotal(BigDecimal) */ @Deprecated public static Map<String, Object> getInvoiceTaxByTaxAuthGeoAndParty(GenericValue invoice) { Modified: ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/AdminClient.java URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/AdminClient.java?rev=1804637&r1=1804636&r2=1804637&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/AdminClient.java (original) +++ ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/AdminClient.java Thu Aug 10 07:21:22 2017 @@ -39,7 +39,7 @@ class AdminClient { * to show its status (running, stopping, ...) * * @param config OFBiz configuration - * @return status: OFBiz server status + * @return status OFBiz server status */ static String requestStatus(Config config) { String status = null; @@ -58,7 +58,7 @@ class AdminClient { * to shut itself down. * * @param config OFBiz configuration - * @return shutdownMessage: message from server + * @return shutdownMessage message from server * on receiving shutdown request */ static String requestShutdown(Config config) { Modified: ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java?rev=1804637&r1=1804636&r2=1804637&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java (original) +++ ofbiz/ofbiz-framework/trunk/framework/start/src/main/java/org/apache/ofbiz/base/start/StartupControlPanel.java Thu Aug 10 07:21:22 2017 @@ -43,7 +43,7 @@ final class StartupControlPanel { * - creating a Config object holding startup configuration parameters * * @param ofbizCommands commands passed by the user to OFBiz on start - * @return config: OFBiz configuration + * @return config OFBiz configuration */ static Config init(List<StartupCommand> ofbizCommands) { Config config = null; |
Free forum by Nabble | Edit this page |