< prev index next >

src/java.desktop/share/classes/javax/print/attribute/standard/ReferenceUriSchemesSupported.java

Print this page
rev 52699 : 8214014: Remove vestiges of gopher: protocol proxy support

*** 83,97 **** * Secure HyperText Transfer Protocol (HTTPS). */ public static final ReferenceUriSchemesSupported HTTPS = new ReferenceUriSchemesSupported(2); /** - * Gopher Protocol. - */ - public static final ReferenceUriSchemesSupported GOPHER = new ReferenceUriSchemesSupported(3); - - /** * USENET news. */ public static final ReferenceUriSchemesSupported NEWS = new ReferenceUriSchemesSupported(4); /** --- 83,92 ----
*** 124,134 **** */ private static final String[] myStringTable = { "ftp", "http", "https", - "gopher", "news", "nntp", "wais", "file", }; --- 119,128 ----
*** 139,149 **** */ private static final ReferenceUriSchemesSupported[] myEnumValueTable = { FTP, HTTP, HTTPS, - GOPHER, NEWS, NNTP, WAIS, FILE, }; --- 133,142 ----
< prev index next >