gintool / gin

GI in No Time - a Simple Microframework for Genetic Improvement
MIT License
43 stars 20 forks source link

Deprecated / unchecked warnings #43

Open sandybrownlee opened 4 years ago

sandybrownlee commented 4 years ago

There are many compilation warnings - some due to deprecated calls to JavaParser but plenty of others.

Add this to build.gradle to see them all:

tasks.withType(JavaCompile) { configure(options) { options.compilerArgs << '-Xlint:deprecation' << '-Xlint:unchecked' } }