Loading telephony/java/android/telephony/gsm/GsmCellLocation.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -40,9 +40,9 @@ public class GsmCellLocation extends CellLocation { * Initialize the object from a bundle. * Initialize the object from a bundle. */ */ public GsmCellLocation(Bundle bundle) { public GsmCellLocation(Bundle bundle) { mLac = bundle.getInt("lac", mLac); mLac = bundle.getInt("lac", -1); mCid = bundle.getInt("cid", mCid); mCid = bundle.getInt("cid", -1); mPsc = bundle.getInt("psc", mPsc); mPsc = bundle.getInt("psc", -1); } } /** /** Loading Loading
telephony/java/android/telephony/gsm/GsmCellLocation.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -40,9 +40,9 @@ public class GsmCellLocation extends CellLocation { * Initialize the object from a bundle. * Initialize the object from a bundle. */ */ public GsmCellLocation(Bundle bundle) { public GsmCellLocation(Bundle bundle) { mLac = bundle.getInt("lac", mLac); mLac = bundle.getInt("lac", -1); mCid = bundle.getInt("cid", mCid); mCid = bundle.getInt("cid", -1); mPsc = bundle.getInt("psc", mPsc); mPsc = bundle.getInt("psc", -1); } } /** /** Loading