/*- * #%L * JSQLParser library * %% * Copyright (C) 2004 - 2019 JSQLParser * %% * Dual licensed under GNU LGPL 2.1 or Apache License 2.0 * #L% */ package net.sf.jsqlparser.statement.select; import net.sf.jsqlparser.schema.Table; @SuppressWarnings({"PMD.UncommentedEmptyMethodBody"}) public class IntoTableVisitorAdapter<T> implements IntoTableVisitor<T> { @Override public <S> T visit(Table tableName, S context) { return null; } }