Skip to content

Commit

Permalink
Merge pull request #378 from csmith/master
Browse files Browse the repository at this point in the history
Fix silly NPE in InviteLabel.
  • Loading branch information
greboid committed Jan 19, 2015
2 parents c181364 + dccdf29 commit e89a027
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public void selectionChanged(final SwingWindowSelectedEvent event) {
if (event.getWindow().isPresent()) {
activeConnection = event.getWindow().get().getContainer().getConnection();
} else {
activeConnection = null;
activeConnection = Optional.empty();
}
update();
}
Expand Down

0 comments on commit e89a027

Please sign in to comment.