Skip to content

Commit

Permalink
Adding documentation for async-log
Browse files Browse the repository at this point in the history
Autocommit Wed Jan 14 15:00:05 EST 2015
  • Loading branch information
mxro committed Jan 14, 2015
1 parent e17b72f commit 5a7eba0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ public class PropertyDataImpl implements PropertyData, HasJSON {
private final Map<String, Object> props;
private final PropertyFactory factory;

public void remove(final String id) {
props.remove(id);
}

@Override
@SuppressWarnings("unchecked")
public <T> T get(final String id, final Class<T> type) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package de.mxro.async.properties.internal.operations;

public class ClearOperation {

}

0 comments on commit 5a7eba0

Please sign in to comment.