Skip to content
This repository has been archived by the owner on Oct 3, 2019. It is now read-only.

Commit

Permalink
Align with toString handling changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pdolezal committed Jul 9, 2016
1 parent f4b3fab commit 01555d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>net.yetamine</groupId>
<artifactId>net.yetamine.sova</artifactId>
<!-- Built with snapshot/1.0.0/20160602 -->
<!-- Built with snapshot/1.0.0/20160709 -->
<version>1.0.0-SNAPSHOT</version>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,11 +290,11 @@ public Optional<T> have(ServletContext source) {
}

/**
* @see net.yetamine.sova.symbols.AbstractSymbol#introspect(java.util.Map)
* @see net.yetamine.sova.symbols.ExpansiveSymbol#introspect(java.util.Map)
*/
@Override
protected void introspect(Map<Object, Object> result) {
super.introspect(result);
result.put(toString("attribute@context"), attribute());
result.put("attribute@context", attribute());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -261,11 +261,11 @@ public Optional<T> have(ServletRequest source) {
}

/**
* @see net.yetamine.sova.symbols.AbstractSymbol#introspect(java.util.Map)
* @see net.yetamine.sova.symbols.ExpansiveSymbol#introspect(java.util.Map)
*/
@Override
protected void introspect(Map<Object, Object> result) {
super.introspect(result);
result.put(toString("attribute@request"), attribute());
result.put("attribute@request", attribute());
}
}
6 changes: 3 additions & 3 deletions src/main/java/net/yetamine/sova/servlet/ServletSymbol.java
Original file line number Diff line number Diff line change
Expand Up @@ -187,12 +187,12 @@ public AdaptationResult<T> yield(ServletRequest source) {
}

/**
* @see net.yetamine.sova.symbols.AbstractSymbol#introspect(java.util.Map)
* @see net.yetamine.sova.symbols.ExpansiveSymbol#introspect(java.util.Map)
*/
@Override
protected void introspect(Map<Object, Object> result) {
super.introspect(result);
result.put(toString("attribute@request"), requestSymbol.attribute());
result.put(toString("attribute@context"), contextSymbol.attribute());
result.put("attribute@request", requestSymbol.attribute());
result.put("attribute@context", contextSymbol.attribute());
}
}

0 comments on commit 01555d8

Please sign in to comment.