Deleted unused helper

This commit is contained in:
CappielloAntonio 2022-01-03 15:06:23 +01:00
parent 91f664cbfe
commit 37bf77bbf7

View file

@ -1,10 +0,0 @@
package com.cappielloantonio.play.helper;
import android.content.Context;
import android.widget.Toast;
public class ErrorHelper {
public static void handle(Context context, int code, String message) {
Toast.makeText(context, code + " - " + message, Toast.LENGTH_LONG).show();
}
}