mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-11 17:41:04 +08:00
15 lines
273 B
Java
15 lines
273 B
Java
package com.openisle.search;
|
|
|
|
public class NoopSearchIndexer implements SearchIndexer {
|
|
|
|
@Override
|
|
public void indexDocument(String index, SearchDocument document) {
|
|
// no-op
|
|
}
|
|
|
|
@Override
|
|
public void deleteDocument(String index, Long id) {
|
|
// no-op
|
|
}
|
|
}
|