{{theTime}}

Search This Blog

Total Pageviews

Java Compiler Error: Some input files use unchecked or unsafe operations.

How to find the unchecked or unsafe operations?

Solution: Recompile with -Xlint:unchecked for details.

1 comment:

Unknown said...

Hey – great blog, just looking around some blogs, seems a really nice platform you are using. I’m currently using WordPress for a few of my blogs but looking to change one of them over to a platform similar to yours as a trial run. melange grey

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...