-1

I have a class DAG which extends another class ARCO. When I compile it, the prompt reports this warning in two lines:

Note: .\ARCO.java uses unchecked or unsafe operations

Recompile with -Xlint: unchecked for details

What is the problem? (class arco doesnt contains errors)

Bogdan Bogdanov
  • 1,707
  • 2
  • 20
  • 31
James The Beard
  • 205
  • 4
  • 10
  • 2
    Best: Stop using unchecked or unsafe operations; Worse: Add @SuppressWarnings where the warnings occur. Without any code, it is impossible to say more. – Andy Turner Feb 04 '16 at 10:14

1 Answers1

1

If you are compiling the class manually then there is an option

-nowarn

This will disable warning messages.

vineeth sivan
  • 510
  • 3
  • 18