You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Ferdinand Xu (JIRA)" <ji...@apache.org> on 2016/05/01 04:20:12 UTC

[jira] [Resolved] (CRYPTO-31) Make fields final wherever possible

     [ https://issues.apache.org/jira/browse/CRYPTO-31?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ferdinand Xu resolved CRYPTO-31.
--------------------------------
    Resolution: Fixed

Committed to the upstream.

> Make fields final wherever possible
> -----------------------------------
>
>                 Key: CRYPTO-31
>                 URL: https://issues.apache.org/jira/browse/CRYPTO-31
>             Project: Commons Crypto
>          Issue Type: Improvement
>          Components: Stream
>            Reporter: Sebb
>            Assignee: Ferdinand Xu
>            Priority: Minor
>
> Final fields are automatically thread safe if the object itself is not modified.
> Whereas non-final fields are not necessarily thread-safe even if they are not mutated - this is because of the Java memory model.
> There are several non-final fields that are not mutated once created. They should be made final to improve thread-safety. This is particularly important for static fields since they are more likely to be used by multiple threads.
> Note: such changes will not affect the public API if the fields are private or package-protected.
> The fields include:
> JavaSecureRandom.instance
> OpensslSecureRandom.fallback
> OpensslSecureRandom.nativeEnabled
> ChannelInput.channel
> StreamInput.buf - since no point creating an instance if it is not going to be used for reading, might as well create the buffer up front
> StreamOutput.bufferSize
> StreamOutput.buf - as for StreamInput
> StreamOutput.out - should also be private
> static NativeCodeLoader.nativeCodeLoaded
> static OSInfo.archMapping
> static ReflectionUtils.classLoader



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)