Skip to content

Commit

Permalink
removed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
boombuler committed Apr 17, 2011
1 parent a9077a5 commit e4a195f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.classpath
.metadata
.settings
default.properties
.project
bin/
Expand Down
4 changes: 2 additions & 2 deletions src/mobi/intuitit/android/widget/SimpleRemoteViews.java
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ protected void writeValue(Parcel out, int flags) {
}
}

@SuppressWarnings("unchecked")
@SuppressWarnings({ "rawtypes" })
private Class getParameterType() {
switch (this.type) {
case BOOLEAN:
Expand Down Expand Up @@ -460,7 +460,7 @@ private Class getParameterType() {
}
}

@SuppressWarnings("unchecked")
@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public void apply(View root) {
final View view = root.findViewById(viewId);
Expand Down

0 comments on commit e4a195f

Please sign in to comment.