Moved naming like others to support to 999

This commit is contained in:
Willem Cazander 2022-10-25 15:09:02 +02:00
parent 87c119e5e3
commit be5869a88e
84 changed files with 961 additions and 961 deletions

View file

@ -4,7 +4,7 @@ import java.util.ArrayList;
import java.util.List;
import love.distributedrebirth.bassboon.clazz.BãßBȍőnAuthor注;
import love.distributedrebirth.numberxd.base2t.part.T08PartOctal;
import love.distributedrebirth.numberxd.base2t.part.T008PartOctal;
/**
* Octal base based number interface.
@ -23,7 +23,7 @@ public interface BaseNumber<V extends BaseNumber<V>> {
void fillOctalsByClone(BaseAppenderOctal appender);
default BaseIteratorOctal iteratorOctalsByClone() {
List<T08PartOctal> octals = new ArrayList<>();
List<T008PartOctal> octals = new ArrayList<>();
fillOctalsByClone(new BaseAppenderOctal(octals));
return new BaseIteratorOctalAdapter(octals.iterator());
}