From 39172ceed6de8ed5c7991904ba56aedc027439d7 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Thu, 24 Oct 2013 15:23:27 +0400 Subject: [PATCH] Make private all fields in JpsKotlinCompilerSettings. Original commit: 3f4cd455e25ce1b29e4c6ad897d5c1450482a8af --- .../org/jetbrains/jet/jps/JpsKotlinCompilerSettings.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jps/jps-plugin/src/org/jetbrains/jet/jps/JpsKotlinCompilerSettings.java b/jps/jps-plugin/src/org/jetbrains/jet/jps/JpsKotlinCompilerSettings.java index 908e237c3a6..bdf56d787b0 100644 --- a/jps/jps-plugin/src/org/jetbrains/jet/jps/JpsKotlinCompilerSettings.java +++ b/jps/jps-plugin/src/org/jetbrains/jet/jps/JpsKotlinCompilerSettings.java @@ -30,13 +30,13 @@ public class JpsKotlinCompilerSettings extends JpsElementBase ROLE = JpsElementChildRoleBase.create("Kotlin Compiler Settings"); @NotNull - public CommonCompilerArguments commonCompilerSettings = new CommonCompilerArguments.DummyImpl(); + private CommonCompilerArguments commonCompilerSettings = new CommonCompilerArguments.DummyImpl(); @NotNull - public K2JVMCompilerArguments k2JvmCompilerSettings = new K2JVMCompilerArguments(); + private K2JVMCompilerArguments k2JvmCompilerSettings = new K2JVMCompilerArguments(); @NotNull - public K2JSCompilerArguments k2JsCompilerSettings = new K2JSCompilerArguments(); + private K2JSCompilerArguments k2JsCompilerSettings = new K2JSCompilerArguments(); @NotNull - public AdditionalCompilerSettings additionalCompilerSettings = new AdditionalCompilerSettings(); + private AdditionalCompilerSettings additionalCompilerSettings = new AdditionalCompilerSettings(); @NotNull @Override