it all seems to work somewhat well

This commit is contained in:
Valentijn van der Jagt
2025-11-22 15:00:09 +01:00
parent ec2db75eb8
commit e2ee4dd30e
5 changed files with 148 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
package nl.herpiederpiee.appie_scraper;
/* generated by chatGPT, since i couldnt find a proper library that works how i want */
public class Pair<F, S> {
public F first;
public S second;
public Pair(F first, S second) {
this.first = first;
this.second = second;
}
public static <F, S> Pair<F, S> pair(F first, S second) {
return new Pair<>(first, second);
}
}