Skip to content

Commit

Permalink
More sensible limit on length of inspector data
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Bettencourt committed Jul 30, 2024
1 parent 0184952 commit 22ed2e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

public class JHexEditorInspector extends JPanel {
private static final long serialVersionUID = 1L;
private static final int MAX_LENGTH = (1 << 16);
private static final int MAX_LENGTH = 256;

private final JHexEditor parent;
private final JTextField binField;
Expand Down

0 comments on commit 22ed2e7

Please sign in to comment.