Skip to content

Commit

Permalink
remove unused stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Longi94 committed Dec 3, 2019
1 parent 9aa2b5f commit ec30c92
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 12 deletions.
4 changes: 0 additions & 4 deletions frontend/src/app/service/cloud-storage.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,6 @@ export class CloudStorageService {
}
}

function sortByDate(a, b) {
return (a.updated < b.updated) ? 1 : ((a.updated > b.updated) ? -1 : 0);
}

class ObjectsResponse {
kind: string;
items: CloudObject[];
Expand Down
7 changes: 1 addition & 6 deletions frontend/src/app/service/loadout.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
Antenna,
Body,
Decal,
Item,
Topper,
Wheel,
COLOR_MAPLE_BLUE,
Expand All @@ -13,12 +12,8 @@ import {
BODY_SLIME_ID
} from 'rl-loadout-lib';
import { Observable, Subject } from 'rxjs';
import { HttpClient } from '@angular/common/http';
import { environment } from '../../environments/environment';
import { Color } from 'three';

const HOST = `${environment.backend}/internal`;

export class PaintConfig {
primary: Color = new Color(DEFAULT_BLUE_TEAM);
accent: Color = new Color(DEFAULT_ACCENT);
Expand Down Expand Up @@ -57,7 +52,7 @@ export class LoadoutService {
private antennaSubject: Subject<Antenna> = new Subject<Antenna>();
antennaChanged$: Observable<Antenna> = this.antennaSubject.asObservable();

constructor(private httpClient: HttpClient) {
constructor() {
}

selectDecal(decal: Decal) {
Expand Down
1 change: 0 additions & 1 deletion tools/blender/rocket_loadout_blender.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# noinspection PyUnresolvedReferences
import bpy
import os
import re
import math
import csv
Expand Down
1 change: 0 additions & 1 deletion tools/extract_static_skins.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import shutil
from multiprocessing.pool import ThreadPool
from functools import partial
from PIL import Image


def umodel_extract(path, file):
Expand Down

0 comments on commit ec30c92

Please sign in to comment.