Remove package comments

This commit is contained in:
Liam Newman
2019-11-13 14:57:23 -08:00
parent 5f597379b5
commit a3b126282d
60 changed files with 121 additions and 121 deletions

View File

@@ -66,12 +66,12 @@ public class GHRef {
new Requester(root).method("DELETE").to(url);
}
/* package */ GHRef wrap(GitHub root) {
GHRef wrap(GitHub root) {
this.root = root;
return this;
}
/* package */ static GHRef[] wrap(GHRef[] in, GitHub root) {
static GHRef[] wrap(GHRef[] in, GitHub root) {
for (GHRef r : in) {
r.wrap(root);
}