From 397de5c46057b1b26b40f2bd166d6469c92a73b0 Mon Sep 17 00:00:00 2001 From: gorhill Date: Sat, 20 Sep 2014 20:13:44 -0400 Subject: [PATCH] removed obsolete const values --- js/net-filtering.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/js/net-filtering.js b/js/net-filtering.js index 469db1585..0d18d50d5 100644 --- a/js/net-filtering.js +++ b/js/net-filtering.js @@ -51,7 +51,6 @@ const Important = 1 << 1; const AnyParty = 0 << 2; const FirstParty = 1 << 2; const ThirdParty = 2 << 2; -const SpecificParty = 3 << 2; var typeNameToTypeValue = { 'any': 1 << 4, @@ -69,18 +68,14 @@ const AnyType = typeNameToTypeValue['any']; const BlockAnyTypeAnyParty = BlockAction | AnyType | AnyParty; const BlockAnyType1stParty = BlockAction | AnyType | FirstParty; const BlockAnyType3rdParty = BlockAction | AnyType | ThirdParty; -const BlockAnyTypeOneParty = BlockAction | AnyType | SpecificParty; const BlockAnyType = BlockAction | AnyType; const BlockAnyParty = BlockAction | AnyParty; -const BlockOneParty = BlockAction | SpecificParty; const AllowAnyTypeAnyParty = AllowAction | AnyType | AnyParty; const AllowAnyType1stParty = AllowAction | AnyType | FirstParty; const AllowAnyType3rdParty = AllowAction | AnyType | ThirdParty; -const AllowAnyTypeOneParty = AllowAction | AnyType | SpecificParty; const AllowAnyType = AllowAction | AnyType; const AllowAnyParty = AllowAction | AnyParty; -const AllowOneParty = AllowAction | SpecificParty; var pageHostname = '';