Indexing slow or simply no longer working until restart

Answered

Using Intellij Ultimate version.

A support colleague in the name of fixing my laptop, went to delete some Intellij related data from my KeyChain on my MacBook Pro.

Ever since then, no longer able to get instant results for my changes. Couple of examples. 

1. I could add a @Test and write a method. The @Test will not change to yellow color (Using Dracula Theme) until I restart the IDE again. 

2. I could have a logic like follow. 

String value = null;
value.replace("a", "b");

IDE would complain null pointer. Good.

Now I go and change the logic to following. 

String value = "a";
value.replace("a", "b");

The IDE will still be stuck on complaining that this would produce null pointer. Until I restart IDE and error goes away. 

Could I please get some help on how I could fix this please. It is extremely bad interface experience. 

0
1 comment

Check that power save mode is disabled. Try clear caches (File | Invalidate caches and Restart)

0

Please sign in to leave a comment.