Importing Java in ActionPerformed Script in Perspective

In line 25, you called out java.util.Date, though you imported Date. To use the fully qualified name, you typically need to import java. Otherwise, omit java.util. in line 25.

3 Likes