B4J Question Warning cause slow IDE

lucasheer

Active Member
Licensed User
Longtime User
Is there any way to disable warnings in the IDE? I create a ton of unused variables pretty often, and it becomes painfully slow to type.

I have a fairly fast PC.
xeon 6 core 12 thread 3.2ghz
24 gb ram
ssd
rtx 3060ti

video

Thank you!
 

EnriqueGonzalez

Well-Known Member
Licensed User
Longtime User
yes!
follow:
 
Upvote 1

tchart

Well-Known Member
Licensed User
Longtime User
It may not be warnings, could be auto completion. Have a read of this;

 
Upvote 0

lucasheer

Active Member
Licensed User
Longtime User
yes!
follow:
This worked perfectly! I used:

#IgnoreWarnings: 9, 10, 12

Took away warnings for unused variables and subs. Lightning fast now. Going to use in B4A, B4I, and B4J.

Thank you!
 
Upvote 0

Robert Valentino

Well-Known Member
Licensed User
Longtime User
I had the same problem with a lot of classes with lots of functions in each class, I found putting them in a library made things a lot better.
 
Upvote 0

lucasheer

Active Member
Licensed User
Longtime User
I had the same problem with a lot of classes with lots of functions in each class, I found putting them in a library made things a lot better.
I only had ~150 lines of code in a module in my case. My lag was caused entirely by 10 unused variable warnings. After disabling these warnings, I never experience lag anymore.
 
Upvote 0
Top