File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
src/main/java/com/sendgrid Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2016-2018 SendGrid, Inc.
3
+ Copyright (c) 2016-2019 SendGrid, Inc.
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ buildscript {
41
41
}
42
42
43
43
dependencies {
44
- compile ' org.apache.httpcomponents:httpcore:4.4.4 '
45
- compile ' org.apache.httpcomponents:httpclient:4.5.2 '
44
+ compile ' org.apache.httpcomponents:httpcore:4.4.12 '
45
+ compile ' org.apache.httpcomponents:httpclient:4.5.10 '
46
46
testCompile ' org.mockito:mockito-core:1.10.19'
47
47
testCompile group : ' junit' , name : ' junit-dep' , version : ' 4.10'
48
48
Original file line number Diff line number Diff line change 46
46
<dependency >
47
47
<groupId >org.apache.httpcomponents</groupId >
48
48
<artifactId >httpcore</artifactId >
49
- <version >4.4.4 </version >
49
+ <version >4.4.12 </version >
50
50
</dependency >
51
51
<dependency >
52
52
<groupId >org.apache.httpcomponents</groupId >
53
53
<artifactId >httpclient</artifactId >
54
- <version >4.5.2 </version >
54
+ <version >4.5.10 </version >
55
55
</dependency >
56
56
</dependencies >
57
57
<build >
Original file line number Diff line number Diff line change 12
12
13
13
import org .apache .http .Header ;
14
14
import org .apache .http .HttpMessage ;
15
- import org .apache .http .annotation .NotThreadSafe ;
16
15
import org .apache .http .client .ClientProtocolException ;
17
16
import org .apache .http .client .ResponseHandler ;
18
17
import org .apache .http .client .methods .CloseableHttpResponse ;
28
27
import org .apache .http .impl .client .HttpClients ;
29
28
30
29
// Hack to get DELETE to accept a request body
31
- @ NotThreadSafe
32
30
class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase {
33
31
public static final String METHOD_NAME = "DELETE" ;
34
32
You can’t perform that action at this time.
0 commit comments