From 675ae734dd7b7a47d93ee3527dd1eb7195be047b Mon Sep 17 00:00:00 2001 From: bjculkin Date: Tue, 11 Apr 2017 17:51:51 -0400 Subject: Cleanup --- dice-lang/src/bjc/dicelang/Shunter.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dice-lang/src/bjc/dicelang/Shunter.java') diff --git a/dice-lang/src/bjc/dicelang/Shunter.java b/dice-lang/src/bjc/dicelang/Shunter.java index 3adfd5b..5ac4614 100644 --- a/dice-lang/src/bjc/dicelang/Shunter.java +++ b/dice-lang/src/bjc/dicelang/Shunter.java @@ -15,7 +15,7 @@ import static bjc.dicelang.Token.Type.*; /** * Shunt a set of infix tokens to postfix tokens. - * + * * @author EVE * */ @@ -101,13 +101,13 @@ public class Shunter { /** * Shunt a set of tokens from infix to postfix. - * + * * @param tks * The tokens to input. - * + * * @param returned * The postfix tokens. - * + * * @return Whether or not the shunt succeeded. */ public boolean shuntTokens(IList tks, IList returned) { -- cgit v1.2.3