summaryrefslogtreecommitdiff
path: root/sources/editors/VSEditor.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/editors/VSEditor.java')
-rw-r--r--sources/editors/VSEditor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/editors/VSEditor.java b/sources/editors/VSEditor.java
index 074bfd4..a81300d 100644
--- a/sources/editors/VSEditor.java
+++ b/sources/editors/VSEditor.java
@@ -38,14 +38,14 @@ abstract class VSEditor implements ActionListener {
protected Insets insets = new Insets(0, 0, 0, 0);
public VSEditor(VSPrefs prefs, VSPrefs prefsToEdit) {
- initialize(prefs, prefsToEdit, SIMULATION_PREFERENCES);
+ init(prefs, prefsToEdit, SIMULATION_PREFERENCES);
}
public VSEditor(VSPrefs prefs, VSPrefs prefsToEdit, int prefsCategory) {
- initialize(prefs, prefsToEdit, prefsCategory);
+ init(prefs, prefsToEdit, prefsCategory);
}
- private void initialize(VSPrefs prefs, VSPrefs prefsToEdit, int prefsCategory) {
+ private void init(VSPrefs prefs, VSPrefs prefsToEdit, int prefsCategory) {
this.prefs = prefs;
this.prefsToEdit = prefsToEdit;
this.prefsCategory = prefsCategory;