1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-23 07:15:19 +00:00

Remove old reference to the promotion system and the number class map.

This commit is contained in:
2017-08-03 20:50:39 -07:00
parent 0f02867a4e
commit 44c52b412c
4 changed files with 0 additions and 181 deletions

View File

@@ -6,9 +6,7 @@ import org.nwapw.abacus.function.OperatorAssociativity;
import org.nwapw.abacus.function.OperatorType;
import org.nwapw.abacus.number.NaiveNumber;
import org.nwapw.abacus.number.NumberInterface;
import org.nwapw.abacus.number.PreciseNumber;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.function.BiFunction;
@@ -340,9 +338,6 @@ public class StandardPlugin extends Plugin {
@Override
public void onEnable() {
registerNumber("naive", NaiveNumber.class);
registerNumber("precise", PreciseNumber.class);
registerOperator("+", OP_ADD);
registerOperator("-", OP_SUBTRACT);
registerOperator("*", OP_MULTIPLY);