Skip to content

Commit ac3c15f

Browse files
committed
Added Javadoc to a file so checkstyle would not complain
1 parent 22eaa77 commit ac3c15f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/com/pokegoapi/api/map/pokemon/EvolutionResult.java

+5
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ public class EvolutionResult {
2424
private EvolvePokemonResponseOuterClass.EvolvePokemonResponse proto;
2525
private Pokemon pokemon;
2626

27+
/**
28+
* The evolution result.
29+
* @param api PokemonGo api
30+
* @param proto Pokemon proto
31+
*/
2732
public EvolutionResult(PokemonGo api, EvolvePokemonResponseOuterClass.EvolvePokemonResponse proto) {
2833
this.proto = proto;
2934
this.pokemon = new Pokemon(api, proto.getEvolvedPokemonData());

0 commit comments

Comments
 (0)