Skip to content

Commit

Permalink
Add short-hand null container constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
ME1312 committed Nov 14, 2020
1 parent b0eb5a5 commit 731083e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Expand Up @@ -10,6 +10,11 @@ public class ContainedPair<K, V> extends Pair<K, V> {
public K key;
public V value;

/**
* Creates the Container
*/
public ContainedPair() {}

/**
* Creates the Container
*
Expand Down
Expand Up @@ -8,6 +8,11 @@
public class Container<V> extends Value<V> {
public V value;

/**
* Creates the Container
*/
public Container() {}

/**
* Creates the Container
*
Expand Down

0 comments on commit 731083e

Please sign in to comment.