Re: RFR: 8353001: Remove leftover Security Manager parsing code in sun.security.util.Debug [v3]

2025-05-06 Thread duke
On Wed, 30 Apr 2025 15:19:10 GMT, Koushik Muthukrishnan Thirupattur wrote: >> The private marshal() method in sun.security.util.Debug still contains code >> to parse "permission=" and "codebase=" options. These >> sub-options were part of the "access" option which was removed in JDK 24 as >>

Re: RFR: 8353001: Remove leftover Security Manager parsing code in sun.security.util.Debug [v3]

2025-05-01 Thread Sean Mullan
On Wed, 30 Apr 2025 15:19:10 GMT, Koushik Muthukrishnan Thirupattur wrote: >> The private marshal() method in sun.security.util.Debug still contains code >> to parse "permission=" and "codebase=" options. These >> sub-options were part of the "access" option which was removed in JDK 24 as >>

Re: RFR: 8353001: Remove leftover Security Manager parsing code in sun.security.util.Debug [v3]

2025-04-30 Thread Koushik Muthukrishnan Thirupattur
> The private marshal() method in sun.security.util.Debug still contains code > to parse "permission=" and "codebase=" options. These > sub-options were part of the "access" option which was removed in JDK 24 as > part of JEP 486, so this code can be removed. Koushik Muthukrishnan Thirupattur h

Re: RFR: 8353001: Remove leftover Security Manager parsing code in sun.security.util.Debug [v2]

2025-04-30 Thread Sean Mullan
On Wed, 30 Apr 2025 03:21:19 GMT, Koushik Muthukrishnan Thirupattur wrote: >> The private marshal() method in sun.security.util.Debug still contains code >> to parse "permission=" and "codebase=" options. These >> sub-options were part of the "access" option which was removed in JDK 24 as >>

Re: RFR: 8353001: Remove leftover Security Manager parsing code in sun.security.util.Debug [v2]

2025-04-29 Thread Koushik Muthukrishnan Thirupattur
> The private marshal() method in sun.security.util.Debug still contains code > to parse "permission=" and "codebase=" options. These > sub-options were part of the "access" option which was removed in JDK 24 as > part of JEP 486, so this code can be removed. Koushik Muthukrishnan Thirupattur h

Re: RFR: 8353001: Remove leftover Security Manager parsing code in sun.security.util.Debug

2025-04-29 Thread Sean Mullan
On Thu, 17 Apr 2025 17:32:03 GMT, Koushik Muthukrishnan Thirupattur wrote: > The private marshal() method in sun.security.util.Debug still contains code > to parse "permission=" and "codebase=" options. These > sub-options were part of the "access" option which was removed in JDK 24 as > part

RFR: 8353001: Remove leftover Security Manager parsing code in sun.security.util.Debug

2025-04-17 Thread Koushik Muthukrishnan Thirupattur
The private marshal() method in sun.security.util.Debug still contains code to parse "permission=" and "codebase=" options. These sub-options were part of the "access" option which was removed in JDK 24 as part of JEP 486, so this code can be removed. - Commit messages: - 8353001: