File tree Expand file tree Collapse file tree 1 file changed +1
-17
lines changed
rest-test-service/src/main/java/password/pwm/resttest Expand file tree Collapse file tree 1 file changed +1
-17
lines changed Original file line number Diff line number Diff line change @@ -29,28 +29,12 @@ public class SmsPostResponseBody
29
29
private String messageContent ;
30
30
private Instant date ;
31
31
32
- public SmsPostResponseBody ( final String message , final Instant date )
32
+ public SmsPostResponseBody ( final String message )
33
33
{
34
34
final String [] strings = message .split ( "&" );
35
35
this .messageContent = strings [strings .length - 1 ];
36
36
}
37
37
38
- public SmsPostResponseBody ( final String message )
39
- {
40
- final String [] strings = message .split ( "&" );
41
- this .messageContent = strings [strings .length - 1 ];
42
- }
43
-
44
- public SmsPostResponseBody ( final Instant date )
45
- {
46
- this .date = Instant .now ();
47
- this .messageContent = "" ;
48
- }
49
-
50
- public SmsPostResponseBody ()
51
- {
52
-
53
- }
54
38
55
39
public String getMessageContent ()
56
40
{
You can’t perform that action at this time.
0 commit comments