From 0f257666776f5062c166f2115432dff567779ee1 Mon Sep 17 00:00:00 2001 From: Chris Melgard Date: Sat, 21 Jan 2023 09:43:29 -0600 Subject: [PATCH] add Github link for jd-gui --- api/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/README.md b/api/README.md index 364c781..b503837 100644 --- a/api/README.md +++ b/api/README.md @@ -289,7 +289,7 @@ To truly understand Zomboid's Java API, you need to peak 'under the hood'. For t Its worth mentioning that decompiling is not exact. The output code is going to be slightly different then the code as it was originally written. That's because usually in a language there are multiple ways of writing the same thing, some are more optimized then others. Part of the compilers job is to optimize the code as it converts it to machine instruction. When you decompile you're working with this modified version of the original. -There are multiple Java decompilers but the most commonly used and easiest to work with is [JD-GUI]() +There are multiple Java decompilers but the most commonly used and easiest to work with is [JD-GUI](https://github.com/java-decompiler/jd-gui). #### Installing