From 2d0c901462f3bf30cdaf836b8a839b76a977d8fd Mon Sep 17 00:00:00 2001 From: bspeice Date: Sun, 8 Dec 2013 22:03:11 -0500 Subject: [PATCH] Restore a cast that was remove earlier --- src/com/uncc/gameday/activities/parking/LotViewFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/uncc/gameday/activities/parking/LotViewFragment.java b/src/com/uncc/gameday/activities/parking/LotViewFragment.java index 87a5278..35b3a65 100644 --- a/src/com/uncc/gameday/activities/parking/LotViewFragment.java +++ b/src/com/uncc/gameday/activities/parking/LotViewFragment.java @@ -55,7 +55,7 @@ public class LotViewFragment extends DialogFragment { Bundle args = this.getArguments(); if (args.containsKey("CHOICE")) - pc = ParkingChoice.valueOf(String.valueOf(args.get("CHOICE"))); + pc = ParkingChoice.valueOf(String.valueOf((char[])args.get("CHOICE"))); else pc = ParkingChoice.BLACK;