mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-02 21:03:34 +03:00
26 lines
565 B
Java
26 lines
565 B
Java
package fixtures;
|
|||
|
|
|
||
|
|
class Todos {
|
||
|
|
|
||
|
|
void bare() {
|
||
|
|
// TODO: re-enable once account syncing lands
|
||
|
|
skip();
|
||
|
|
}
|
||
|
|
|
||
|
|
void referenced() {
|
||
|
|
// TODO(#1234): re-enable once account syncing lands
|
||
|
|
skip();
|
||
|
|
}
|
||
|
|
|
||
|
|
void linked() {
|
||
|
|
// FIXME: the upstream fix is tracked at https://example.com/issues/9
|
||
|
|
workaround();
|
||
|
|
}
|
||
|
|
|
||
|
|
void mentioned() {
|
||
|
|
// Image placeholders are not scored: their body text is a TODO marker
|
||
|
|
// rather than prose, so scoring it would reward the placeholder.
|
||
|
|
score();
|
||
|
|
}
|
||
|
|
}
|