From 6bf3f268f4a01963a2ee13f60178664bb056a802 Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Sun, 15 Oct 2017 23:31:56 -0700 Subject: Update checker framework dataflow and javacutils to 2.1.14 Change-Id: I62ad827fc4bbd54d022097003af63e351e44b98c --- .../dataflow/cfg/block/RegularBlock.java | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) (limited to 'third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/block/RegularBlock.java') diff --git a/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/block/RegularBlock.java b/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/block/RegularBlock.java index dd6502fa1a..566449257b 100644 --- a/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/block/RegularBlock.java +++ b/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/block/RegularBlock.java @@ -1,38 +1,27 @@ package org.checkerframework.dataflow.cfg.block; import java.util.List; - import org.checkerframework.dataflow.cfg.node.Node; /** * A regular basic block that contains a sequence of {@link Node}s. * - *

- * - * The following invariant holds. + *

The following invariant holds. * *

  * forall n in getContents() :: n.getBlock() == this
  * 
* * @author Stefan Heule - * */ public interface RegularBlock extends SingleSuccessorBlock { - /** - * @return The unmodifiable sequence of {@link Node}s. - */ + /** @return the unmodifiable sequence of {@link Node}s. */ List getContents(); - /** - * @return The regular successor block. - */ + /** @return the regular successor block */ Block getRegularSuccessor(); - /** - * Is this block empty (i.e., does it not contain any contents). - */ + /** Is this block empty (i.e., does it not contain any contents). */ boolean isEmpty(); - } -- cgit v1.2.3