deleted unwanted code

This commit is contained in:
Mariya
2023-12-07 16:00:34 +05:30
parent 85986c87b1
commit 7464bfef6d

View File

@@ -132,13 +132,4 @@ class OfflineUserListAdapter(private val view: View, private val batLevel: Int)
return diffMillis / (60 * 1000)
}
private fun saveIncubationLocally(incubationTime: String) {
val sharedPreferences = view.context.getSharedPreferences("LocalData", Context.MODE_PRIVATE)
val editor = sharedPreferences.edit()
editor.putString("localIncubationTime", incubationTime)
// Add any other necessary data
editor.apply()
}
}