Update documentation from review

This commit is contained in:
John Oliver 2021-04-07 17:00:36 +00:00
Родитель b6730459c6
Коммит 979bda4399
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -83,16 +83,16 @@ public abstract class RecordingConfiguration {
/**
* Sets a configuration to use with a {@code Recording}.
* @param configuration The value of the configuration, not {@code null}.
* @throws NullPointerException if predefinedConfiguration is {@code null}
* @throws NullPointerException if configuration is {@code null}
*/
public RecordingConfiguration(String configuration) {
Objects.requireNonNull(configuration, "configurationName cannot be null");
Objects.requireNonNull(configuration, "configuration cannot be null");
this.configuration = configuration;
}
/**
* Get the name of the configuration.
* @return The name of the configuration.
* Get the recording configuration.
* @return The the recording configuration.
*/
public String getConfiguration() {
return configuration;