Skip to content

Commit 9bde21e

Browse files
committed
Changes to be committed:
modified: .idea/misc.xml modified: UMBCIoTAndroidClient.iml modified: app/src/main/java/edu/umbc/cs/iot/clients/android/ui/activities/MainActivity.java modified: app/src/main/java/edu/umbc/cs/iot/clients/android/util/JSONRequest.java modified: app/src/main/java/edu/umbc/cs/iot/clients/android/util/VolleySingleton.java
1 parent a88fa38 commit 9bde21e

File tree

5 files changed

+4
-24
lines changed

5 files changed

+4
-24
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UMBCIoTAndroidClient.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.id="UMBCIoTAndroidClient" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id="UMBCIoTAndroidClient" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$USER_HOME$/code/android/projects/UMBCIoTAndroidClient" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
33
<component name="FacetManager">
44
<facet type="java-gradle" name="Java-Gradle">
55
<configuration>

app/src/main/java/edu/umbc/cs/iot/clients/android/ui/activities/MainActivity.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,6 @@ public boolean isBeaconDisabled() {
528528
protected void onPostCreate(Bundle savedInstanceState) {
529529
super.onPostCreate(savedInstanceState);
530530

531-
// Log.d(UMBCIoTApplication.getDebugTag(), "Came to onPostCreate");
532531
// Trigger the initial hide() shortly after the activity has been
533532
// created, to briefly hint to the user that UI controls
534533
// are available.

app/src/main/java/edu/umbc/cs/iot/clients/android/util/JSONRequest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package edu.umbc.cs.iot.clients.android.util;
22

3-
/**
3+
/*
44
* Created by prajit on 7/27/2016.
55
* @author Prajit Kumar Das
66
*/
77

8-
//import android.util.Log;
9-
108
import org.json.JSONException;
119
import org.json.JSONObject;
1210

@@ -16,7 +14,6 @@ public final class JSONRequest {
1614
private JSONObject request;
1715

1816
public JSONObject getRequest() {
19-
// Log.d(UMBCIoTApplication.getDebugTag(),request.toString());
2017
return request;
2118
}
2219

app/src/main/java/edu/umbc/cs/iot/clients/android/util/VolleySingleton.java

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package edu.umbc.cs.iot.clients.android.util;
22

3-
/**
3+
/*
44
* Created on May 27, 2016
55
* @author: Prajit Kumar Das
66
*/
@@ -19,22 +19,6 @@ public class VolleySingleton {
1919
private VolleySingleton(Context context) {
2020
mCtx = context;
2121
mRequestQueue = getRequestQueue();
22-
23-
// mImageLoader = new ImageLoader(mRequestQueue,
24-
// new ImageLoader.ImageCache() {
25-
// private final LruCache<String, Bitmap>
26-
// cache = new LruCache<String, Bitmap>(20);
27-
//
28-
// @Override
29-
// public Bitmap getBitmap(String url) {
30-
// return cache.get(url);
31-
// }
32-
//
33-
// @Override
34-
// public void putBitmap(String url, Bitmap bitmap) {
35-
// cache.put(url, bitmap);
36-
// }
37-
// });
3822
}
3923

4024
public static synchronized VolleySingleton getInstance(Context context) {

0 commit comments

Comments
 (0)