mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2024-11-23 13:59:29 +00:00
Remove useless code
This commit is contained in:
parent
d94a22aa4f
commit
c3795f74b0
@ -1,7 +1,6 @@
|
||||
package org.communiquons.android.comunic.client.data.helpers;
|
||||
|
||||
import android.content.Context;
|
||||
import android.support.annotation.Nullable;
|
||||
|
||||
import org.communiquons.android.comunic.client.data.models.ConversationInfo;
|
||||
|
||||
@ -14,36 +13,10 @@ import org.communiquons.android.comunic.client.data.models.ConversationInfo;
|
||||
*/
|
||||
public class CallsHelper extends BaseHelper {
|
||||
|
||||
/**
|
||||
* Debug tag
|
||||
*/
|
||||
private static final String TAG = CallsHelper.class.getSimpleName();
|
||||
|
||||
|
||||
public CallsHelper(Context context) {
|
||||
super(context);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get call configuration if required
|
||||
*/
|
||||
public void getCallConfigurationIfRequired(){
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Calls configuration, if available
|
||||
*
|
||||
* Note if IsCallSystemAvailable returned TRUE, it is guaranteed that this method WILL NOT
|
||||
* return null
|
||||
*
|
||||
* @return Calls configuration
|
||||
*/
|
||||
@Nullable
|
||||
public static Object GetCallsConfiguration(){
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* No call possible with this flavour
|
||||
@ -55,10 +28,10 @@ public class CallsHelper extends BaseHelper {
|
||||
/**
|
||||
* No call for no conversation
|
||||
*
|
||||
* @param conversation Target conversation
|
||||
* @param c Target conversation
|
||||
* @return false
|
||||
*/
|
||||
public static boolean IsCallSystemAvailableForConversation(ConversationInfo conversation){
|
||||
public static boolean IsCallSystemAvailableForConversation(ConversationInfo c){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user