@@ -185,7 +185,7 @@ private void initComponents() {
185
185
186
186
setLayout (new GridBagLayout ());
187
187
188
- SectionSeparator presetsSection = UISupport .createSectionSeparator ("Custom OQL Scripts" ); // NOI18N
188
+ SectionSeparator presetsSection = UISupport .createSectionSeparator ("Custom OQL Scripts" );
189
189
c = new GridBagConstraints ();
190
190
c .gridy = 0 ;
191
191
c .gridwidth = GridBagConstraints .REMAINDER ;
@@ -215,10 +215,10 @@ public void removeSelectionInterval(int i1, int i2) {}
215
215
});
216
216
list .setSelectionMode (ListSelectionModel .SINGLE_SELECTION );
217
217
final Dimension oneDim = new Dimension (1 , 1 );
218
- final JLabel loadingScriptsLabel = new JLabel ("<loading scripts>" , JLabel .CENTER ); // NOI18N
218
+ final JLabel loadingScriptsLabel = new JLabel ("<loading scripts>" , JLabel .CENTER );
219
219
loadingScriptsLabel .setEnabled (false );
220
220
loadingScriptsLabel .setSize (loadingScriptsLabel .getPreferredSize ());
221
- final JLabel noScriptsLabel = new JLabel ("<no saved scripts>" , JLabel .CENTER ); // NOI18N
221
+ final JLabel noScriptsLabel = new JLabel ("<no saved scripts>" , JLabel .CENTER );
222
222
noScriptsLabel .setEnabled (false );
223
223
noScriptsLabel .setSize (noScriptsLabel .getPreferredSize ());
224
224
JScrollPane listScroll = new JScrollPane (list ) {
@@ -253,7 +253,7 @@ protected void fireActionPerformed(ActionEvent e) {
253
253
int mar = nimbusLaF ? 0 : 8 ;
254
254
margin .left = mar ;
255
255
margin .right = mar ;
256
- removeButton .setToolTipText ("Delete selected script" ); // NOI18N
256
+ removeButton .setToolTipText ("Delete selected script" );
257
257
removeButton .setMargin (margin );
258
258
upButton = new JButton () {
259
259
protected void fireActionPerformed (ActionEvent e ) {
@@ -271,7 +271,7 @@ protected void fireActionPerformed(ActionEvent e) {
271
271
};
272
272
downButton .setIcon (new ImageIcon (ImageUtilities .loadImage (
273
273
"com/sun/tools/visualvm/profiler/resources/down.png" , true ))); // NOI18N
274
- downButton .setToolTipText ("Move selected script down" ); // NOI18N
274
+ downButton .setToolTipText ("Move selected script down" );
275
275
downButton .setMargin (margin );
276
276
277
277
JPanel controlsPanel = new JPanel (new GridLayout (1 , 4 , 5 , 0 )) {
@@ -306,7 +306,7 @@ public void setEnabled(boolean enabled) {
306
306
add (presetsPanel , c );
307
307
308
308
JLabel nameLabel = new JLabel ();
309
- Mnemonics .setLocalizedText (nameLabel , "&Name:" ); // NOI18N
309
+ Mnemonics .setLocalizedText (nameLabel , "&Name:" );
310
310
c = new GridBagConstraints ();
311
311
c .gridx = 0 ;
312
312
c .gridy = 0 ;
@@ -338,7 +338,7 @@ public void setBackground(Color bg) {
338
338
presetsPanel .add (nameField , c );
339
339
340
340
JLabel descrLabel = new JLabel ();
341
- Mnemonics .setLocalizedText (descrLabel , "&Description (optional):" ); // NOI18N
341
+ Mnemonics .setLocalizedText (descrLabel , "&Description (optional):" );
342
342
c = new GridBagConstraints ();
343
343
c .gridx = 0 ;
344
344
c .gridy = 1 ;
@@ -378,7 +378,7 @@ public void setEnabled(boolean b) {
378
378
presetsPanel .add (descrScroll , c );
379
379
380
380
JLabel previewLabel = new JLabel ();
381
- Mnemonics .setLocalizedText (previewLabel , "&Preview:" ); // NOI18N
381
+ Mnemonics .setLocalizedText (previewLabel , "&Preview:" );
382
382
c = new GridBagConstraints ();
383
383
c .gridx = 0 ;
384
384
c .gridy = 3 ;
0 commit comments