Added and Fixed lots of JavaDocs

This commit is contained in:
Sn0wStorm
2019-11-25 22:16:16 +01:00
parent c287b6350f
commit 16c03f9da1
32 changed files with 513 additions and 308 deletions
-8
View File
@@ -46,8 +46,6 @@ public class Tuple<A, B> {
/**
* Gets the first value in the tuple
*
* @return
*/
public A first() {
return a;
@@ -55,8 +53,6 @@ public class Tuple<A, B> {
/**
* Gets the second value in the tuple
*
* @return
*/
public B second() {
return b;
@@ -64,8 +60,6 @@ public class Tuple<A, B> {
/**
* Gets the first value in the tuple, Synonym for first()
*
* @return
*/
public A a() {
return a;
@@ -73,8 +67,6 @@ public class Tuple<A, B> {
/**
* Gets the second value in the tuple, Synonym for second()
*
* @return
*/
public B b() {
return b;