Skip to content

Commit

Permalink
Additional Changes in setImageTypeSupported() method to take input as…
Browse files Browse the repository at this point in the history
… List of FileType. Also, removed unnecessary import in PerformInteraction.java to prevent additional warning.
  • Loading branch information
Dahiya, Anil (A.) committed Dec 12, 2014
1 parent 0c407d8 commit 7a5c0ff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public List<FileType> getImageTypeSupported() {
}
return null;
}
public void setImageTypeSupported( FileType imageTypeSupported ) {
public void setImageTypeSupported( List<FileType> imageTypeSupported ) {
if (imageTypeSupported != null) {
store.put(KEY_IMAGE_TYPE_SUPPORTED, imageTypeSupported );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import com.smartdevicelink.protocol.enums.FunctionID;
import com.smartdevicelink.proxy.RPCRequest;
import com.smartdevicelink.proxy.rpc.enums.DisplayType;
import com.smartdevicelink.proxy.rpc.enums.InteractionMode;
import com.smartdevicelink.proxy.rpc.enums.LayoutMode;
import com.smartdevicelink.util.DebugTool;
Expand Down

0 comments on commit 7a5c0ff

Please sign in to comment.