Skip to content

Commit

Permalink
Added mini copyright header to new files
Browse files Browse the repository at this point in the history
Removed bad import/export from main file
  • Loading branch information
JaffaKetchup committed Jan 4, 2024
1 parent 477ad77 commit 452e91f
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/flutter_map_tile_caching.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ import 'src/bulk_download/instance.dart';
import 'src/bulk_download/rate_limited_stream.dart';
import 'src/bulk_download/tile_loops/shared.dart';
import 'src/errors/browsing.dart';
import 'src/errors/initialisation.dart';
import 'src/misc/exts.dart';
import 'src/misc/int_extremes.dart';
import 'src/misc/obscure_query_params.dart';
Expand All @@ -48,7 +47,6 @@ import 'src/providers/image_provider.dart';
export 'src/backend/exports.dart';
export 'src/errors/browsing.dart';
export 'src/errors/damaged_store.dart';
export 'src/errors/initialisation.dart';
export 'src/misc/typedefs.dart';

part 'src/bulk_download/download_progress.dart';
Expand Down
3 changes: 3 additions & 0 deletions lib/src/backend/exports.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

export 'impls/objectbox/backend.dart';
export 'interfaces/backend.dart';
export 'interfaces/models.dart';
Expand Down
3 changes: 3 additions & 0 deletions lib/src/backend/impls/objectbox/backend.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

import 'dart:async';
import 'dart:io';
import 'dart:isolate';
Expand Down
3 changes: 3 additions & 0 deletions lib/src/backend/impls/objectbox/models/models.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

import 'dart:typed_data';

import 'package:objectbox/objectbox.dart';
Expand Down
3 changes: 3 additions & 0 deletions lib/src/backend/impls/objectbox/worker.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

part of 'backend.dart';

enum _WorkerCmdType {
Expand Down
3 changes: 3 additions & 0 deletions lib/src/backend/interfaces/backend.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

import 'dart:async';
import 'dart:typed_data';

Expand Down
3 changes: 3 additions & 0 deletions lib/src/backend/interfaces/models.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

import 'dart:typed_data';

import 'package:meta/meta.dart';
Expand Down
3 changes: 3 additions & 0 deletions lib/src/backend/utils/errors.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

/// An error to be thrown by backend implementations in known events only
///
/// A backend can create custom errors of this type, which is useful to show
Expand Down

0 comments on commit 452e91f

Please sign in to comment.