Skip to content

Commit

Permalink
new minor
Browse files Browse the repository at this point in the history
  • Loading branch information
raffaeleragni committed Dec 20, 2023
1 parent 2c1a01b commit 788e858
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_sync"
version = "0.12.1"
version = "0.12.2"
edition = "2021"
authors = ["Raffaele Ragni <raffaele.ragni@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions src/networking/assets.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use bevy::prelude::*;

pub(crate) fn setup_client(app: &mut App, ip: std::net::IpAddr, web_port: u16) {
pub(crate) fn setup_client(_: &mut App, _: std::net::IpAddr, _: u16) {
}

pub(crate) fn setup_server(app: &mut App, ip: std::net::IpAddr, web_port: u16) {
pub(crate) fn setup_server(_: &mut App, _: std::net::IpAddr, _: u16) {
}

0 comments on commit 788e858

Please sign in to comment.