Skip to content

Commit

Permalink
Added Javadoc to a file so checkstyle would not complain
Browse files Browse the repository at this point in the history
  • Loading branch information
mjmjelde committed Jul 23, 2016
1 parent 22eaa77 commit ac3c15f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ public class EvolutionResult {
private EvolvePokemonResponseOuterClass.EvolvePokemonResponse proto;
private Pokemon pokemon;

/**
* The evolution result.
* @param api PokemonGo api
* @param proto Pokemon proto
*/
public EvolutionResult(PokemonGo api, EvolvePokemonResponseOuterClass.EvolvePokemonResponse proto) {
this.proto = proto;
this.pokemon = new Pokemon(api, proto.getEvolvedPokemonData());
Expand Down

0 comments on commit ac3c15f

Please sign in to comment.