3 random classes (#2278)

Signed-off-by: liach <liach@users.noreply.github.com>

Co-authored-by: liach <liach@users.noreply.github.com>
This commit is contained in:
liach 2021-04-05 18:39:27 +07:00 committed by GitHub
parent 74a7bf1680
commit f1a8f3efa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1 @@
CLASS net/minecraft/class_6026 net/minecraft/entity/Mount

View File

@ -0,0 +1,16 @@
CLASS net/minecraft/class_5995 net/minecraft/util/HeapDumping
COMMENT A heap-dumping (dumps all object data in a JVM) utility using
COMMENT {@link HotSpotDiagnosticMXBean} from the Java Management Extensions API.
FIELD field_29840 HOTSPOT_DIAGNOSTIC_MXBEAN_NAME Ljava/lang/String;
COMMENT String representation of the {@code ObjectName} for the {@link HotSpotDiagnosticMXBean}.
FIELD field_29841 bean Lcom/sun/management/HotSpotDiagnosticMXBean;
METHOD method_34934 getBean ()Lcom/sun/management/HotSpotDiagnosticMXBean;
METHOD method_34935 dump (Ljava/lang/String;Z)V
COMMENT Dumps the heap to the {@code outputFile} file in the same format as the hprof
COMMENT heap dump.
COMMENT
COMMENT @see HotSpotDiagnosticMXBean#dumpHeap(String, boolean)
ARG 0 outputFile
COMMENT the system-dependent file name
ARG 1 live
COMMENT if {@code true} dump only live objects, i.e. objects that are reachable from others

View File

@ -0,0 +1,13 @@
CLASS net/minecraft/class_6014 net/minecraft/util/thread/GroupAssigningThreadFactory
COMMENT A custom thread factory that assigns each created thread to the group of the
COMMENT system security manager or the factory-creating thread (when the security
COMMENT manager does not exist). Otherwise, it behaves much like the thread creation
COMMENT logic in {@link net.minecraft.util.Util#createIoWorker()}.
FIELD field_29936 LOGGER Lorg/apache/logging/log4j/Logger;
FIELD field_29937 group Ljava/lang/ThreadGroup;
FIELD field_29938 nextIndex Ljava/util/concurrent/atomic/AtomicInteger;
FIELD field_29939 prefix Ljava/lang/String;
METHOD <init> (Ljava/lang/String;)V
ARG 1 name
METHOD newThread (Ljava/lang/Runnable;)Ljava/lang/Thread;
ARG 1 r