Created
May 18, 2012 14:51
-
-
Save jtwaleson/2725669 to your computer and use it in GitHub Desktop.
shifting1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Map<String,SortDirection> filteredMap = Maps.newHashMap(); | |
for(Entry<String,SortDirection> entry : sort.entrySet()) | |
{ | |
AttributePath attributePath = parsePath(entityName, entry.getKey()); | |
if(!attributePath.getAttribute().isVirtual()) | |
filteredMap.put(entry.getKey(), entry.getValue()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment