Re: RFR: 8285745: Re-examine PushbackInputStream mark/reset

2022-04-27 Thread Alan Bateman
On Wed, 27 Apr 2022 20:10:03 GMT, Brian Burkhalter  wrote:

> Please review this request to remove the `synchronized` keyword from the 
> `mark(int)` and `reset()` methods of `java.io.PushbackInputStream`.

Marked as reviewed by alanb (Reviewer).

-

PR: https://git.openjdk.java.net/jdk/pull/8433


Re: RFR: 8285745: Re-examine PushbackInputStream mark/reset

2022-04-27 Thread Jaikiran Pai
On Wed, 27 Apr 2022 20:10:03 GMT, Brian Burkhalter  wrote:

> Please review this request to remove the `synchronized` keyword from the 
> `mark(int)` and `reset()` methods of `java.io.PushbackInputStream`.

Looks fine to me.
Given that `mark()` currently is a no-op and `reset()` throws an exception, the 
`synchronized` wouldn't be doing anything when it comes to calls on an exact 
instance of `PushbackInputStream`.
Calls on subclasses of `PushbackInputStream` which did support mark/reset, 
would be overriding this method already and handling any synchronization 
themselves.

-

Marked as reviewed by jpai (Committer).

PR: https://git.openjdk.java.net/jdk/pull/8433


Re: RFR: 8285745: Re-examine PushbackInputStream mark/reset

2022-04-27 Thread Brian Burkhalter
On Wed, 27 Apr 2022 20:10:03 GMT, Brian Burkhalter  wrote:

> Please review this request to remove the `synchronized` keyword from the 
> `mark(int)` and `reset()` methods of `java.io.PushbackInputStream`.

Please see also https://github.com/openjdk/jdk/pull/8309.

-

PR: https://git.openjdk.java.net/jdk/pull/8433


RFR: 8285745: Re-examine PushbackInputStream mark/reset

2022-04-27 Thread Brian Burkhalter
Please review this request to remove the `synchronized` keyword from the 
`mark(int)` and `reset()` methods of `java.io.PushbackInputStream`.

-

Commit messages:
 - 8285745: Re-examine PushbackInputStream mark/reset

Changes: https://git.openjdk.java.net/jdk/pull/8433/files
 Webrev: https://webrevs.openjdk.java.net/?repo=jdk=8433=00
  Issue: https://bugs.openjdk.java.net/browse/JDK-8285745
  Stats: 3 lines in 1 file changed: 0 ins; 0 del; 3 mod
  Patch: https://git.openjdk.java.net/jdk/pull/8433.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/8433/head:pull/8433

PR: https://git.openjdk.java.net/jdk/pull/8433