Hi all, I'm working on a special purpouse android client that uses the wave protocol libraries. Unfortunately, there is a large use of java.lang.String.isEmpty() but such method is available only form java 1.6, while android supports only java 1.5.
so i would like a little advice, will using String.length() == 0 instead of String.isEmpty() cause any problem? (so far it's working ok for me) and would you accept such a patch mainstream if i replace all the occurencies of String.isEmpty() with String.length() == 0? -- You received this message because you are subscribed to the Google Groups "Wave Protocol" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/wave-protocol?hl=en.
