Changeset 4870


Ignore:
Timestamp:
Jul 3, 2014 9:43:19 AM (10 years ago)
Author:
bennylp
Message:

Misc re #1751: changing Android java's String.isEmpty() to String.length()==0 for better portability since the former is only available on API level 9

Location:
pjproject/trunk/pjsip-apps/src/swig/java/android/src/org/pjsip/pjsua2/app
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/swig/java/android/src/org/pjsip/pjsua2/app/MainActivity.java

    r4866 r4870  
    244244                View view = li.inflate(R.layout.dlg_account_config, null); 
    245245                 
    246                 if (!lastRegStatus.isEmpty()) { 
     246                if (lastRegStatus.length()!=0) { 
    247247                        TextView tvInfo = (TextView)view.findViewById(R.id.textViewInfo); 
    248248                        tvInfo.setText("Last status: " + lastRegStatus); 
     
    289289                                        AuthCredInfoVector creds = accCfg.getSipConfig().getAuthCreds(); 
    290290                                        creds.clear(); 
    291                                         if (!username.isEmpty()) { 
     291                                        if (username.length() != 0) { 
    292292                                                creds.add(new AuthCredInfo("Digest", "*", username, 0, password)); 
    293293                                        } 
    294294                                        StringVector proxies = accCfg.getSipConfig().getProxies(); 
    295295                                        proxies.clear(); 
    296                                         if (!proxy.isEmpty()) { 
     296                                        if (proxy.length() != 0) { 
    297297                                                proxies.add(proxy); 
    298298                                        } 
  • pjproject/trunk/pjsip-apps/src/swig/java/android/src/org/pjsip/pjsua2/app/MyApp.java

    r4866 r4870  
    180180                        if (bi.getPresStatus().getStatus() == pjsua_buddy_status.PJSUA_BUDDY_STATUS_ONLINE) { 
    181181                                status = bi.getPresStatus().getStatusText(); 
    182                                 if (status == null || status.isEmpty()) { 
     182                                if (status == null || status.length()==0) { 
    183183                                        status = "Online"; 
    184184                                } 
Note: See TracChangeset for help on using the changeset viewer.