Created
March 1, 2011 11:34
-
-
Save skihero/849005 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List <UCService> list_ucs ; | |
/* add the subscribed services to a list */ | |
list_ucs.add(ucs) ; | |
Gives local variable list_ucs may not have been initialized. | |
List in java needs to be initiallised like | |
List <UCService> list_ucs = new ArrayList<UCService>(); /** WTF **/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment