Skip to content

Commit

Permalink
Fixes #119
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Burke <[email protected]>
  • Loading branch information
Mike Burke committed Feb 18, 2015
1 parent 9c282a6 commit 0f79215
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ public static SdlDisconnectedReason valueForString(String value) {
}

public static SdlDisconnectedReason convertAppInterfaceUnregisteredReason(AppInterfaceUnregisteredReason reason) {
if(reason == null){
return null;
}

SdlDisconnectedReason returnReason = SdlDisconnectedReason.DEFAULT;

Expand Down

0 comments on commit 0f79215

Please sign in to comment.