Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit b05531f

Browse files
author
Irvine Sunday
committed
Removing unused code
1 parent fc013fa commit b05531f

File tree

2 files changed

+0
-48
lines changed

2 files changed

+0
-48
lines changed
Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
package com.microsoft.graph.connect.util;
22

3-
import java.util.HashMap;
4-
53
public interface IManifestReader {
64
String getApplicationMetadataValueString(String key);
7-
int getApplicationMetadataValueInt(String key);
8-
boolean getApplicationMetadataValueBoolean(String key);
9-
int getApplicationMetadataValueColor(String key);
10-
float getApplicationMetadataValueFloat(String key);
11-
String getIntentFilterAction(String activityName);
12-
String[] getIntentFilterCategories(String activityName);
13-
HashMap<String, String> getIntentFilterData(String activityName);
14-
155
}
166

app/src/main/java/com/microsoft/graph/connect/util/ManifestReader.java

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
import com.microsoft.graph.connect.Connect;
99

10-
import java.util.HashMap;
1110

1211
/*
1312
Contains methods that access the application manifest
@@ -36,42 +35,5 @@ public String getApplicationMetadataValueString(String key) {
3635
}
3736
return returnValue;
3837
}
39-
40-
@Override
41-
public int getApplicationMetadataValueInt(String key) {
42-
return 0;
43-
}
44-
45-
@Override
46-
public boolean getApplicationMetadataValueBoolean(String key) {
47-
return false;
48-
}
49-
50-
@Override
51-
public int getApplicationMetadataValueColor(String key) {
52-
return 0;
53-
}
54-
55-
@Override
56-
public float getApplicationMetadataValueFloat(String key) {
57-
return 0;
58-
}
59-
60-
@Override
61-
public String getIntentFilterAction(String activityName) {
62-
return null;
63-
}
64-
65-
@Override
66-
public String[] getIntentFilterCategories(String activityName) {
67-
return new String[0];
68-
}
69-
70-
@Override
71-
public HashMap<String, String> getIntentFilterData(String activityName) {
72-
return null;
73-
}
74-
75-
7638
}
7739

0 commit comments

Comments
 (0)