From 61ef4aabdf27aa1ae4bf019955e3166ba778c10f Mon Sep 17 00:00:00 2001 From: Grant Gayed Date: Tue, 25 Jun 2013 11:20:27 -0400 Subject: Bug 411058 - finish trimming XPCOM interfaces down to the functions that are used --- .../eclipse/swt/internal/mozilla/nsIAuthInformation.java | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIAuthInformation.java') diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIAuthInformation.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIAuthInformation.java index 9540c34db1..9aace28431 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIAuthInformation.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIAuthInformation.java @@ -46,18 +46,10 @@ public class nsIAuthInformation extends nsISupports { public static final int NEED_DOMAIN = 4; public static final int ONLY_PASSWORD = 8; - public int GetFlags(int[] aFlags) { - return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aFlags); - } - public int GetRealm(long /*int*/ aRealm) { return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), aRealm); } - public int GetAuthenticationScheme(long /*int*/ aAuthenticationScheme) { - return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 3, getAddress(), aAuthenticationScheme); - } - public int GetUsername(long /*int*/ aUsername) { return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 4, getAddress(), aUsername); } @@ -73,12 +65,4 @@ public class nsIAuthInformation extends nsISupports { public int SetPassword(long /*int*/ aPassword) { return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 7, getAddress(), aPassword); } - - public int GetDomain(long /*int*/ aDomain) { - return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 8, getAddress(), aDomain); - } - - public int SetDomain(long /*int*/ aDomain) { - return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 9, getAddress(), aDomain); - } } -- cgit