minor - comment out system.out.println messages
This commit is contained in:
parent
5fbbee3826
commit
b7e89a8e49
|
@ -222,10 +222,10 @@ public class WAutoCompleterCity extends AutoComplete implements EventListener<Ev
|
||||||
|
|
||||||
public void onEvent(Event event) throws Exception
|
public void onEvent(Event event) throws Exception
|
||||||
{
|
{
|
||||||
System.out.println("Event: " + event.getName());
|
//System.out.println("Event: " + event.getName());
|
||||||
event.toString();
|
//event.toString();
|
||||||
int index = this.getSelectedIndex();
|
int index = this.getSelectedIndex();
|
||||||
System.out.println("Index = " +index );
|
//System.out.println("Index = " +index );
|
||||||
if (index>=0)
|
if (index>=0)
|
||||||
{
|
{
|
||||||
CityVO city = (CityVO) m_citiesShow.get(index);
|
CityVO city = (CityVO) m_citiesShow.get(index);
|
||||||
|
|
Loading…
Reference in New Issue