From 358e3e2f7185181ea201f960ed7f3912e6346497 Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Sun, 28 Mar 2021 11:45:14 -0400 Subject: [PATCH] Removed unneccessary imports --- Algorithms.ts | 1 - TestAlgorithms.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/Algorithms.ts b/Algorithms.ts index bd31fa6..df0cd9a 100644 --- a/Algorithms.ts +++ b/Algorithms.ts @@ -21,7 +21,6 @@ Copyright (C) 2021 Matthew Ellison */ -import { SSL_OP_SSLEAY_080_CLIENT_DH_BUG } from "constants"; import { InvalidResult } from "./InvalidResult"; diff --git a/TestAlgorithms.ts b/TestAlgorithms.ts index d0654bb..0bc1b21 100644 --- a/TestAlgorithms.ts +++ b/TestAlgorithms.ts @@ -22,7 +22,6 @@ Copyright (C) 2021 Matthew Ellison import assert = require("assert"); -import { SSL_OP_SSLEAY_080_CLIENT_DH_BUG } from "constants"; import { arrayEquals, getAllFib, getAllFibBig, getFactors, getFactorsBig, getPrimes, getPrimesBig, getNumPrimes, getNumPrimesBig, sqrtBig, getSum, getSumBig, getProd, getProdBig, getDivisors, getDivisorsBig } from "./Algorithms";