Skip to content

Commit

Permalink
Fix Javadoc errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
peplin committed Apr 29, 2014
1 parent c0fce25 commit 6ce8cd8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions openxc/src/com/openxc/interfaces/usb/UsbDeviceUtilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
* The URI format expected by these functions is:
*
* usb://<vendor id>/<device id>
* usb://vendor_id/device_id
*
* where both vendor ID and device ID are hex values without a "0x" prefix. An
* example valid URI is "usb://04d8/0053".
Expand All @@ -30,7 +30,7 @@ private UsbDeviceUtilities() { }
*
* @param uri the USB device URI
* @throws DataSourceResourceException If the URI doesn't match the
* format usb://<vendor id>/<device id>
* format usb://vendor_id/device_id
*/
public static int vendorFromUri(URI uri)
throws DataSourceResourceException {
Expand All @@ -48,7 +48,7 @@ public static int vendorFromUri(URI uri)
*
* @param uri the USB device URI
* @throws DataSourceResourceException If the URI doesn't match the
* format usb://<vendor id>/<device id>
* format usb://vendor_id/device_id
*/
public static int productFromUri(URI uri)
throws DataSourceResourceException {
Expand Down
2 changes: 1 addition & 1 deletion openxc/src/com/openxc/remote/VehicleService.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* {@link UsbVehicleInterface} is activated as a {@link VehicleInterface}. Other
* vehicle interfaces can be activated with the
* {@link #addVehicleInterface(Class, String)} method and they can removed with
* {@link #removeVehicleInterface(Class)}.
* {@link #removeVehicleInterface(VehicleInterface)}.
*
* This service uses the same {@link com.openxc.DataPipeline} as the
* {@link com.openxc.VehicleManager} to move data from sources to sinks, but it
Expand Down
2 changes: 1 addition & 1 deletion openxc/src/com/openxc/util/SupportSettingsUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static Set<String> getStringSet(SharedPreferences preferences,
* Note that this is a simple approach that won't work if the values in the
* set contain commas.
*
* @param preferences the SharedPreferences to retreive the set from.
* @param editor the editor to store the set in.
* @param key the key for the preference.
* @param value the value to store with the key.
*/
Expand Down

0 comments on commit 6ce8cd8

Please sign in to comment.