summary refs log tree commit diff
path: root/crypto/src/openpgp/PgpEncryptedDataList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/openpgp/PgpEncryptedDataList.cs')
-rw-r--r--crypto/src/openpgp/PgpEncryptedDataList.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/crypto/src/openpgp/PgpEncryptedDataList.cs b/crypto/src/openpgp/PgpEncryptedDataList.cs
index 1f605dab5..33e7eee2c 100644
--- a/crypto/src/openpgp/PgpEncryptedDataList.cs
+++ b/crypto/src/openpgp/PgpEncryptedDataList.cs
@@ -47,18 +47,6 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp
 			get { return (PgpEncryptedData) list[index]; }
 		}
 
-		[Obsolete("Use 'object[index]' syntax instead")]
-		public object Get(int index)
-        {
-            return this[index];
-        }
-
-		[Obsolete("Use 'Count' property instead")]
-		public int Size
-        {
-			get { return list.Count; }
-        }
-
 		public int Count
 		{
 			get { return list.Count; }