Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from myrle-krantz/develop
Browse files Browse the repository at this point in the history
Made annotated error decoder public
  • Loading branch information
myrle-krantz committed Apr 11, 2017
2 parents 4f4b0da + 3a4a2b7 commit 78e28e6
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -35,12 +35,13 @@
/**
* @author Myrle Krantz
*/
class AnnotatedErrorDecoder implements ErrorDecoder {
@SuppressWarnings("WeakerAccess")
public class AnnotatedErrorDecoder implements ErrorDecoder {

private final Class feignClientClass;
private final Logger logger;

AnnotatedErrorDecoder(final Logger logger, final Class feignClientClass) {
public AnnotatedErrorDecoder(final Logger logger, final Class feignClientClass) {
this.logger = logger;
this.feignClientClass = feignClientClass;
}
Expand Down

0 comments on commit 78e28e6

Please sign in to comment.