File tree Expand file tree Collapse file tree
test/java/org/glavo/nbt/io Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020
2121 exports org .glavo .nbt ;
2222 exports org .glavo .nbt .tag ;
23- exports org .glavo .nbt .internal .io ;
23+ exports org .glavo .nbt .internal .output ;
24+ exports org .glavo .nbt .internal ;
25+ exports org .glavo .nbt .internal .input ;
2426}
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .glavo .nbt .internal . io ;
16+ package org .glavo .nbt .internal ;
1717
1818import org .glavo .nbt .tag .Tag ;
1919
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .glavo .nbt .internal .io ;
16+ package org .glavo .nbt .internal .input ;
1717
18+ import org .glavo .nbt .internal .IOUtils ;
1819import org .glavo .nbt .internal .StringCache ;
1920import org .glavo .nbt .tag .*;
2021import org .jetbrains .annotations .Nullable ;
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2026 Glavo
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ @ NotNullByDefault
18+ package org .glavo .nbt .internal .input ;
19+
20+ import org .jetbrains .annotations .NotNullByDefault ;
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .glavo .nbt .internal .io ;
16+ package org .glavo .nbt .internal .output ;
1717
18+ import org .glavo .nbt .internal .IOUtils ;
1819import org .glavo .nbt .tag .*;
1920
2021import java .io .*;
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2026 Glavo
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ @ NotNullByDefault
18+ package org .glavo .nbt .internal .output ;
19+
20+ import org .jetbrains .annotations .NotNullByDefault ;
Original file line number Diff line number Diff line change 1515 */
1616
1717@ NotNullByDefault
18- package org .glavo .nbt .internal . io ;
18+ package org .glavo .nbt .internal ;
1919
2020import org .jetbrains .annotations .NotNullByDefault ;
Original file line number Diff line number Diff line change 1616package org .glavo .nbt .tag ;
1717
1818import org .glavo .nbt .NBTElement ;
19- import org .glavo .nbt .internal .io . IOUtils ;
20- import org .glavo .nbt .internal .io .NBTReader ;
21- import org .glavo .nbt .internal .io .NBTWriter ;
19+ import org .glavo .nbt .internal .IOUtils ;
20+ import org .glavo .nbt .internal .input .NBTReader ;
21+ import org .glavo .nbt .internal .output .NBTWriter ;
2222import org .jetbrains .annotations .Contract ;
2323import org .jetbrains .annotations .Nullable ;
2424
Original file line number Diff line number Diff line change 1616package org .glavo .nbt .io ;
1717
1818import com .github .steveice10 .opennbt .NBTIO ;
19- import org .glavo .nbt .internal .io .NBTReader ;
2019import org .glavo .nbt .tag .*;
2120import org .junit .jupiter .api .Test ;
2221
You can’t perform that action at this time.
0 commit comments