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");
1717
1818import java .util .AbstractMap ;
1919
20- @ SuppressWarnings ("all" )
2120public 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- }
21+ private static final long serialVersionUID = 7869442222989031548L ;
22+
23+ public ComboBoxItem (final K key , final V value ) {
24+ super (key , value );
25+ }
26+
27+ @ Override
28+ public String toString () {
29+ return this .getValue ().toString ();
30+ }
3031}
You can’t perform that action at this time.
0 commit comments