GP-0 fix golang javadoc errors

This commit is contained in:
dev747368
2025-09-08 16:03:42 +00:00
parent 1bc7bbfe8d
commit c703e4541f
4 changed files with 2 additions and 8 deletions

View File

@@ -320,9 +320,7 @@ public class GoTypeManager {
/**
* Finds a Ghidra data type by its go-type name.
*
* @param <T> Ghidra DataType generic type specifier
* @param typeName go type name
* @param clazz {@link DataType} class reference
* @return Ghidra {@link DataType} corresponding to the requested name, coerced into a
* specific {@link DataType} subclass, or {@code NULL} if not found
* @throws IOException if error

View File

@@ -27,10 +27,7 @@ import ghidra.util.Msg;
/**
* Go type info about a specific map type.
* <p>
* See {@link GoTypeManager#getMapGoType()} or the "runtime.hmap" type for the definition of
* a instance of a map variable in memory.
* <p>
* Maps are passed by address, and sizeof(mapvar) will always be ptrSize
* Maps are passed by address, and in Go sizeof(mapvar) will always be ptrSize
*/
@StructureMapping(
structureName = { "runtime.maptype", "internal/abi.MapType", "internal/abi.OldMapType" }

View File

@@ -303,7 +303,6 @@ public abstract class GoType implements StructureMarkup<GoType>, StructureVerifi
* <p>
* This default implementation just creates an opaque blob of the appropriate size
*
* @param goTypes {@link GoTypeManager}
* @return {@link DataType} that represents the Go type
* @throws IOException if error getting name of the type
*/

View File

@@ -23,7 +23,7 @@ import ghidra.program.model.data.DataType;
/**
* A limited use wrapper/bridge between a GoType and a Ghidra DataType, this
* wrapper only supports the {@link #recoverDataType(GoTypeManager)} call.
* wrapper only supports the {@link #recoverDataType()} call.
*/
public class GoTypeBridge extends GoType {