Skip to content

Commit

Permalink
Merge pull request #1136 from dbwiddis/javadoc
Browse files Browse the repository at this point in the history
Javadoc cleanup
  • Loading branch information
matthiasblaesing authored Sep 20, 2019
2 parents 09fdd8c + b9e0f9b commit 6665319
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -434,8 +434,6 @@ public CFMutableDictionaryRef(Pointer p) {
* Convenience method for {@link CoreFoundation#CFDictionarySetValue} on this
* object.
*
* @param theDict
* The dictionary to modify.
* @param key
* The key of the value to set.
* @param value
Expand Down
4 changes: 2 additions & 2 deletions contrib/platform/src/com/sun/jna/platform/mac/IOKit.java
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,8 @@ public Boolean getBooleanProperty(String key) {
}

/**
* Convenience method to get a {@link java.lang.byte} array value from this IO
* Registry Entry.
* Convenience method to get a {@code byte} array value from this IO Registry
* Entry.
*
* @param key
* The string name of the key to retrieve
Expand Down
4 changes: 2 additions & 2 deletions contrib/platform/src/com/sun/jna/platform/win32/Kernel32.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
package com.sun.jna.platform.win32;

import com.sun.jna.LastErrorException;
import com.sun.jna.Memory;
import com.sun.jna.Native;
import com.sun.jna.Pointer;
import com.sun.jna.ptr.IntByReference;
Expand Down Expand Up @@ -2693,7 +2692,8 @@ boolean SystemTimeToTzSpecificLocalTime(TIME_ZONE_INFORMATION lpTimeZone,
boolean FileTimeToSystemTime(FILETIME lpFileTime, SYSTEMTIME lpSystemTime);

/**
* @deprecated Use {@link #CreateRemoteThread(com.sun.jna.platform.win32.WinNT.HANDLE, com.sun.jna.platform.win32.WinBase.SECURITY_ATTRIBUTES, int, com.sun.jna.Pointer, com.sun.jna.Pointer, com.sun.jna.platform.win32.WinDef.DWORD, com.sun.jna.Pointer) }
* @deprecated Use
* {@link #CreateRemoteThread(com.sun.jna.platform.win32.WinNT.HANDLE, com.sun.jna.platform.win32.WinBase.SECURITY_ATTRIBUTES, int, com.sun.jna.Pointer, com.sun.jna.Pointer, int, com.sun.jna.platform.win32.WinDef.DWORDByReference)
*/
@Deprecated
HANDLE CreateRemoteThread(HANDLE hProcess, WinBase.SECURITY_ATTRIBUTES lpThreadAttributes, int dwStackSize, FOREIGN_THREAD_START_ROUTINE lpStartAddress, Pointer lpParameter, DWORD dwCreationFlags, Pointer lpThreadId);
Expand Down

0 comments on commit 6665319

Please sign in to comment.