Skip to content

Commit

Permalink
#834 extra ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Apr 2, 2018
1 parent da47b15 commit 01cd51b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/org/takes/rq/multipart/RqMtSmart.java
Expand Up @@ -42,6 +42,14 @@ public final class RqMtSmart implements RqMultipart {
* Original request.
*/
private final RqMultipart origin;
/**
* Ctor.
* @param req Original
* @throws IOException If fails
*/
public RqMtSmart(final Request req) throws IOException {
this(new RqMtBase(req));
}
/**
* Ctor.
* @param req Original
Expand Down

0 comments on commit 01cd51b

Please sign in to comment.