<major>.<minor>.<build>[-platform]
[-platform]
is platform name, (Fabric, Forge etc, or nothing)
1.1.33
version 1.1, build 33
"""Logger module | |
~~~~~~~~~~~~~ | |
Owner: @bobkinn_ | |
Copyright 2024 BoBkiNN | |
Permission is hereby granted to use, modify, and distribute this file, with or without modification, provided | |
that the following conditions are met: | |
1. Redistributions of this file or substantial portions of it must retain the above copyright notice, this list of conditions, and the following acknowledgment: |
import gzip, argparse, json, base64, os | |
from io import TextIOWrapper | |
from typing import Any | |
PRETTY_INDENT = 2 | |
def main(): | |
parser = argparse.ArgumentParser( | |
prog='bdstudio_decode.py', | |
description='Decode BDStudio (https://eszesbalint.github.io/bdstudio) project to JSON', |
import org.jetbrains.annotations.NotNull; | |
import org.jetbrains.annotations.Nullable; | |
import java.util.Collection; | |
import java.util.LinkedHashMap; | |
import java.util.Map; | |
import java.util.Set; | |
public class OrderedHashMapWrapper<K, V> implements Map<K, V> { | |
private final LinkedHashMap<K, V> map; |
import lombok.AccessLevel; | |
import lombok.RequiredArgsConstructor; | |
import org.jetbrains.annotations.Contract; | |
import org.jetbrains.annotations.NotNull; | |
import org.jetbrains.annotations.Nullable; | |
import java.util.*; | |
@SuppressWarnings("SuspiciousMethodCalls") | |
@RequiredArgsConstructor(access = AccessLevel.PRIVATE) |
Subject: [PATCH] disable annotation processor refmap checking | |
--- | |
Index: src/ap/java/org/spongepowered/tools/obfuscation/AnnotatedMixinElementHandlerInjector.java | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
diff --git a/src/ap/java/org/spongepowered/tools/obfuscation/AnnotatedMixinElementHandlerInjector.java b/src/ap/java/org/spongepowered/tools/obfuscation/AnnotatedMixinElementHandlerInjector.java | |
--- a/src/ap/java/org/spongepowered/tools/obfuscation/AnnotatedMixinElementHandlerInjector.java (revision 155314e6e91465dad727e621a569906a410cd6f4) | |
+++ b/src/ap/java/org/spongepowered/tools/obfuscation/AnnotatedMixinElementHandlerInjector.java (date 1689688058112) |
/* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2017 Minecrell <https://github.com/Minecrell> | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |