diff --git a/VoLTE-HW/src/com/huawei/cust/HwCfgFilePolicy.java b/VoLTE-HW/src/com/huawei/cust/HwCfgFilePolicy.java index f4678d9..3d811b8 100644 --- a/VoLTE-HW/src/com/huawei/cust/HwCfgFilePolicy.java +++ b/VoLTE-HW/src/com/huawei/cust/HwCfgFilePolicy.java @@ -1,10 +1,9 @@ package com.huawei.cust; -import java.io.File; -import android.util.Log; +import java.io.FileNotFoundException; public class HwCfgFilePolicy { public static File getCfgFile(String path, int a) { - return new File("/noexist"); + throw new FileNotFoundException("STUBBY STUB STUB"); } }