From 0c28ec38449a59cf34cf5b3c13ea02add1ee57c5 Mon Sep 17 00:00:00 2001 From: Kevin Lamonte Date: Thu, 8 Aug 2019 17:07:50 -0500 Subject: [PATCH] oops --- src/jexer/bits/Cell.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/jexer/bits/Cell.java b/src/jexer/bits/Cell.java index c949c3e..ff10dae 100644 --- a/src/jexer/bits/Cell.java +++ b/src/jexer/bits/Cell.java @@ -133,6 +133,15 @@ public final class Cell extends CellAttributes { this.ch = ch; } + /** + * Public constructor sets the attributes. + * + * @param attr attributes to use + */ + public Cell(final CellAttributes attr) { + super(attr); + } + /** * Public constructor sets the character and attributes. * -- 2.27.0