Skip to content

Commit

Permalink
Dependencies upgraded
Browse files Browse the repository at this point in the history
  • Loading branch information
Heromyth committed Sep 20, 2019
1 parent 05b3386 commit d207221
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://www.huntlabs.net",
"license": "Apache-2.0",
"dependencies": {
"hunt": "~>1.3.0-rc.6",
"hunt": "~>1.3.1-rc.3",
"hunt-security": "~>0.3.0"
}
}
5 changes: 5 additions & 0 deletions source/hunt/shiro/config/Ini.d
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import hunt.Exceptions;
import hunt.logging.ConsoleLogger;
import hunt.Object;
import hunt.text.StringBuilder;
import hunt.util.ObjectUtils;

import std.array;
import std.file;
Expand Down Expand Up @@ -570,6 +571,8 @@ class Ini : Map!(string, IniSection) {
// Set<Entry!(string, IniSection)> entrySet() {
// return Collections.unmodifiableSet(this.sections.entrySet());
// }

mixin CloneMemberTemplate!(typeof(this));

}

Expand Down Expand Up @@ -857,4 +860,6 @@ class IniSection : Map!(string, string) {
override size_t toHash() @trusted nothrow {
return hashOf(this.name) * 31 + this.props.toHash();
}

mixin CloneMemberTemplate!(typeof(this));
}
3 changes: 3 additions & 0 deletions source/hunt/shiro/subject/SimplePrincipalMap.d
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import hunt.shiro.util.CollectionUtils;
import hunt.collection;
import hunt.Exceptions;
import hunt.Object;
import hunt.util.ObjectUtils;

import std.array;
import std.range;
Expand Down Expand Up @@ -397,4 +398,6 @@ class SimplePrincipalMap : PrincipalMap {
}
return h;
}

mixin CloneMemberTemplate!(typeof(this));
}
4 changes: 3 additions & 1 deletion source/hunt/shiro/util/MapContext.d
Original file line number Diff line number Diff line change
Expand Up @@ -233,5 +233,7 @@ class MapContext : Map!(string, Object) {
} catch (Exception ex) {
}
return h;
}
}

mixin CloneMemberTemplate!(typeof(this));
}

0 comments on commit d207221

Please sign in to comment.