Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ mavenPublishing {
name.set("Matt Pollock")
url.set("https://github.com/mattpollock")
}
developer {
id.set("politeRaccoon")
name.set("Jon Parker")
url.set("https://github.com/politeRaccoon")
}
}
scm {
url.set("https://github.com/mitre-public/commons")
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/org/mitre/caasd/commons/Pair.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@
* Similarly, it is also a mistake to serialize an {@literal ArrayList<T>} when T is
* non-serializable. Despite this vulnerability it is useful for ArrayList, and Pair, to be
* Serializable.
* <p>
* This class is Deprecated to encourage usage of Java Record classes. This class may or may not be
* removed in the future.
*/
@Deprecated
public class Pair<L, R> implements Serializable {

private static final long serialVersionUID = 1L;
Expand Down
Loading