You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you create a List, you could declare this is a List.
For example
original code:
ArrayList Links = getLinks(contents);
System.out.println(Links);
changed code:
ArrayList webLinksLink = getLinks(contents);
System.out.println(webLinksLink);
(add web to distinguish linksList)
For example
original code:
ArrayList Links = getLinks(contents);
System.out.println(Links);
changed code:
ArrayList webLinksLink = getLinks(contents);
System.out.println(webLinksLink);
(add web to distinguish linksList)