File tree Expand file tree Collapse file tree
sqldev/src/main/java/org/utplsql/sqldev/ui/runner Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- /*
1+ /**
22 * Copyright 2019 Philipp Salvisberg <philipp.salvisberg@trivadis.com>
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .utplsql .sqldev .ui .runner
16+ package org .utplsql .sqldev .ui .runner ;
1717
18- import java .util .AbstractMap
18+ import java .util .AbstractMap ;
1919
20- class ComboBoxItem <K ,V > extends AbstractMap .SimpleEntry <K ,V > {
21- new (K key , V value ) {
22- super (key , value )
23- }
24-
25- override toString () {
26- return value .toString
27- }
20+ @ SuppressWarnings ("all" )
21+ public class ComboBoxItem <K extends Object , V extends Object > extends AbstractMap .SimpleEntry <K , V > {
22+ public ComboBoxItem (final K key , final V value ) {
23+ super (key , value );
24+ }
25+
26+ @ Override
27+ public String toString () {
28+ return this .getValue ().toString ();
29+ }
2830}
You can’t perform that action at this time.
0 commit comments