Skip to content

Commit

Permalink
fix: java docs error
Browse files Browse the repository at this point in the history
Signed-off-by: Sarthak Shyngle <[email protected]>
  • Loading branch information
Sarthak160 committed Jun 24, 2024
1 parent 1ec570d commit b04c847
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions common/src/main/java/io/keploy/utils/MagicBytes.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@
import java.util.Arrays;
import java.util.List;

/**
* Magic bytes can be checked at : https://en.wikipedia.org/wiki/List_of_file_signatures
* And converted to integer hex params using JS in the browser console, for example :
* "78 01 73 0D 62 ?? 60".split(" ").map(str => str == "??" ? "MagicBytes.ANY" : "0x"+str).join(", ")
* prints => "0x78, 0x01, 0x73, 0x0D, 0x62, MagicBytes.ANY, 0x60"
*/
public enum MagicBytes {
// Executables
EXE(Header.builder()
Expand Down

0 comments on commit b04c847

Please sign in to comment.