Skip to content

Commit

Permalink
Make editor parsing delay configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
lkishalmi committed Jan 12, 2025
1 parent b556042 commit 2946b22
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
public abstract class Scheduler {

/**
* Default reparse delay
* Default reparse delay is 500ms
*/
public static final int DEFAULT_REPARSE_DELAY = 500;
public static final int DEFAULT_REPARSE_DELAY = Integer.getInteger("nb.editor.reparseDelay", 500);

private static final Logger LOG = Logger.getLogger(Scheduler.class.getName());

Expand Down

0 comments on commit 2946b22

Please sign in to comment.